When the page loads the hover effect is blue. The settings are set to transparent black. On the home page the first big grid when the page is viewed with google chrome the title of the post is not displayed correctly. At the bottom of the big grid in the left corner there is a little black cubes so post title is not on the bottom of the image. It’s normal that after every change on the page I need to clear cache because the page starts running in mobile view on Mozilla Firefox and on mobile phones it only shows the last posts. After clear cache everything returns to normal.
My website is: https://www.defender.hr
Hi,
A cache can cause a delay before the changes on the website are displayed. Most caching plugins have configurations and settings in order to avoid this for known users for example. Also some caching plugins can interfere with the mobile theme plugin functionality.
The recommended caching plugin would be the WP Super Cache
– https://forum.tagdiv.com/cache-plugin-install-and-configure/
Thanks
Okay. thank you for your reply. I solved most of the problems
The problem was in the caching plugins. Now everything is all right. Please can you help me change the hover effect on the footer fonts. The footer hover effect color should be different than the default thema color.
Site Link: https://www.defender.hr/
The font in the footer are now black when the mouse crosses them. I want to be yellow as a sub footer. I can not find a css that changes color only in footer fonts, and blocks.
Hi,
A code like this will change the color of the links when hovered, for the elements present in the footer (same color as sub-footer)
– https://www.screencast.com/t/zFRXuabGD
Enter it in Theme panel->Custom CSS
.td-footer-wrapper .td_module_wrap:hover .entry-title a,
.td-footer-wrapper .widget a:hover {
color: #ffc20e;
}
If there is no change after the code is entered, clear the cache.
Thanks
I have a problem with hover color on the big grid. My page is very large and needs a lot of time to load. When loading the hover is blue. On which line in style.css or somewhere else I have to change color so that no blue appears when the page loads. My color is rgba (0,0,0,0,4).
When the page loads: http://www.info-pelegrin.hr/Defender/Defender1.png
After loads (good): http://www.info-pelegrin.hr/Defender/Defender2.png
Hi,
That is happening because of the transition between the initial theme color that is set in the theme stylesheet, and the custom color
– https://www.screencast.com/t/uwOPspso76b
You could substitute the original color with your custom color, instead of overwriting it. Try changing the initial background color set for the grid style with your own, here
– https://www.screencast.com/t/PHsguulC
Then the initial background color that will be loaded, will be the one set there.
Thanks