-
AuthorPosts
-
November 2, 2021 at 12:01 am #1327355
Ahoy,
I’m having issues with the style settings for my plugin. The styles are being overwritten to show enfolds style settings instead of the ones I have selected for in my plugin settings. The plugin i’m having issues with is called “Tooltips Style”. As a test I have set the colors to text color to orange and the font family to a different font family but they are staying the default of enfold. I would also like the hove color to be blue of the text and the underline to be a tad thicker if possible. I have reached out the the plugin developer and the issue seems to be with the enfold theme only, when I change the theme the styles load.
I have included a video of the issue as well as the website in the private content.
November 2, 2021 at 2:21 pm #1327463Hey hitrev,
Thank you for the link to your site and the video, I didn’t find the orange “.tooltipsall” color in your css, it was black, but I did find the green hover:
but you will notice that your links are inside a H1 tag:
so a css rule of just “.tooltipsall” is pretty weak, heading tags typically have a higher specificity than this.
So to correct try forming your rule like this and add manually:#about.alternate_color h1 .tooltipsall { color: red; } #about.alternate_color h1 .tooltipsall:hover { color: yellow; }
Your plugin options may work in a plain text element, but I believe even then the paragraph tag “p” is effected by a second class for the “.main_color” or the “.alternate_color” classes, so in the end a single class “.tooltipsall” doesn’t have the specificity needed. I hope this makes sense.
Best regards,
MikeNovember 2, 2021 at 8:17 pm #1327524Hi @mike, thanks for the explanation. How would I got about changing the font as well?
I will pass this off to the plugin developer.
November 3, 2021 at 7:17 am #1327582 -
AuthorPosts
- You must be logged in to reply to this topic.