How would one remove the return to top hot link that appears in the bottom right when one begins to scroll?
Hey coreyblaser!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
a#scroll-top-link {
display: none !important;
}
Regards,
Yigit
Thanks Yigit. I don’t mind adding a few things into the Quick CSS, but I would rather they be housed in the custom.css. Why do certain styles, like this one, fail in the custom.css file? It looks like it is the last stylesheet that affects these elements to load.
Am I missing something in the configuration of the framework that does not allow the custom.css to override them?
Hey!
It should have worked fine. Can you please post the content of your custom.css using http://pastebin.com/ ?
Cheers!
Yigit
Hi Yigit,
I think I have nailed down what the issue is and why the custom.css was not working. I am building off of a child theme for Enfold and had a custom.css folder’d exactly like the parent. It looks like it is not getting picked up by WP or the parent theme.
Moving the customizations to a special custom.css in the child theme and adding a hard css link under the wphead() function in the parent’s header.php has forced the overrides.
It’s not as clean as I would like, but it works.
Also, I wanted to thank you for all your help. You guys have been really great. :)