Hi ![]()
i would like to remove the Text hover of the Pictures, but i cant find how to do it. Can somebody maybe help?
Many thanks! ![]()
Hi ![]()
i would like to remove the Text hover of the Pictures, but i cant find how to do it. Can somebody maybe help?
Many thanks! ![]()
Once you find the relevant code, look for a property such as cursor: pointer; or cursor: zoom-in;. This property is usually responsible for changing the cursor and triggering the hover effect.
Either delete the entire line containing the cursor property or comment it out by adding /* at the beginning of the line and */ at the end. For example:
/* cursor: pointer; */
β
i still cant find it ![]()
Hi [email removed]LinisCandy,
You can try this code by following these steps:
Step 1: Go to Online Store->Theme->Edit code.
Step 2: Search file base.css
Step 3: Paste the below code at the bottom of the file β Save
#MainContent .gpo-tooltip {
display: none;
}
Hope my solution works perfectly for you.
Cheers!
Oliver | PageFly
Access your theme editor or navigate to the CSS file: Open your theme editor or access the CSS file associated with your theme. This file is typically named styles.css or theme.css. If youβre using a theme with multiple CSS files, look for the one that controls the styles for your pictures.
Find the CSS selector for the picture hover effect: Look for the CSS selector that targets the pictures or image elements with the hover effect. It might look something like this:
.image:hover {
/* Styles for the hover effect */
}
Many thanks that worked!
You are welcome.Iβm glad when I can help you ![]()