rightsidehealth
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Decode] Shake Animation in Page MenuKOKO,
Here is all the CSS I used to turn off the shake effect. Something in there worked, but I haven’t gone back to figure out what did and what didn’t. Again…I know this is bad programming style, just sharing what got the job done for me..main-navigation li.current-menu-item > a:hover {
animation: none !important;
-webkit-animation: none !important;
}.menu-item a:hover, .menu-item-type-post_type a:hover, .menu-item-object-page a:hover, .current-menu-item a:hover, .page_item a:hover, .current_page_parent a:hover{
animation: none !important;
-webkit-animation: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
-o-transition: color 0 ease-in !important;
transition: none !important;
text-decoration:underline;
}.current-page-item a:hover{
animation: none !important;
-webkit-animation: none !important;
-moz-transition: none !important;
-webkit-transition: none !important;
-o-transition: color 0 ease-in !important;
transition: none !important;
}#site-navigation li a:hover{
text-decoration: underline;
animation: none !important;
}If you’re able to isolate which style is the only necessary one, I’d love to hear about it : )
– RickForum: Themes and Templates
In reply to: [Decode] Shake Animation in Page MenuKOKO,
I basically replicated the above CSS for a bunch of different classes that I thought would apply, because I didn’t know which one would actually get the job done (definitely not good practice, but i will definitely throw in the occasional hack when desperate) and i left the “.” off of the front of the class definition. So in the code above, instead of typing “.current-page item a:hover{…}” I typed “current-page-item a:hover{…}”The code pasted above doesn’t have the error in it.
Forum: Themes and Templates
In reply to: [Decode] Shake Animation in Page MenuFigured it out, nevermind. Syntax error I overlooked 1,000 times in a row.
Forum: Themes and Templates
In reply to: [Decode] HTML in footerha…anchor tags are allowed on here…my comment should read:
Out of curiosity…when I put tags in the customizer area, the < a > showed up right on the page…was there something I could have done to let the theme know I was entering code not raw text? (but no sweat…the problem is solved).
Thanks again,
RickForum: Themes and Templates
In reply to: [Decode] HTML in footerEveryone,
thanks so much for the suggestions, really helpful community on here. I was able to do it by making a child theme and putting the HTML in the footer.php folder.Out of curiosity…when I put tags in the customizer area, the “” showed up right on the page…was there something I could have done to let the theme know I was entering code not raw text? (but no sweat…the problem is solved).
Thanks again,
RickForum: Themes and Templates
In reply to: [Decode] HTML in footerThanks a ton. I’ll give this a try!
Forum: Themes and Templates
In reply to: [Decode] More Control Over Entry SummaryGreat thanks Scott. Didn’t know about that.