advise on how to make text in my side bar lowercase using css in my customizer.
-
I would like to know how to get my text on the side bar in lower case using css in my customizer. Also I have another question. I have set my tags and categories to be invisible using css but I notice sometimes they show and other times they don’t. No big deal but I would prefer for them to not show if possible. Thank you. Sharon.
my blog is gentlestitches.comThe blog I need help with is: (visible only to logged in users)
-
Hello.
To get rid of the permanent uppercase in your side bar add this text to your CSS
.widget-title {
text-transform: none !important;
}The display none that you used to hide the parts of the footer you don’t want to see should be hiding them. When I loaded your site I did not see the tag or categories. You could try something like this, to give it a higher importance then some other settings. It might help
.tag-links {
display: none !important;
}If there is some code overriding your previous display none, adding the “!important” to it, should give display: none control.
Hope that helps, let me know if you have any questions.
-
Thank you Charliescheer,
re tags and categories, my original code had
.home .entry-footer
before the .tag-links {display: none;}
I removed and placed the code you suggested .tag-links {display: none!important;}
and I have the display I wanted.
Also the other code worked very well for turning off the upper case
so once again THANK YOU VERY MUCH!
:_D
- The topic ‘advise on how to make text in my side bar lowercase using css in my customizer.’ is closed to new replies.