Remove text in sidebar top
-
Hi!
How do I remove the text “More” in the right sidebar top?
/Alexandra
-
Hi alexandra. Welcome to the Hueman forum. There are a couple of ways to do it using custom CSS either in a child theme (http://docs.presscustomizr.com/article/239-using-a-child-theme-with-hueman) or using a plugin like https://ww.wp.xz.cn/plugins/simple-css/ or https://ww.wp.xz.cn/plugins/custom-css-js/:
/* remove sidebar More heading */ .s2 .sidebar-top p { display: none; }The problem with display:none is it removes the text and then the sidebar top collapses. An alternative is:
/* remove sidebar More heading */ .s2 .sidebar-top p { font-size: 0; }Or you could set it to the same color as the background:
/* remove sidebar More heading */ .s2 .sidebar-top p { color: #8c8c8c; }Thank you for your prompt answer.
Maybe this is too difficult for me. I´m an absolute beginner, this is the first time I use WordPress and I don´t know anything about coding.
I´ve downloaded the plug-in simple-css, but then what? Where should I put the code? I prefer your last option, to set the text in the same color as the background.Hi!
I´m a bit worried and fast.
I figured it out. Beautiful!
Thank you so much!Great, it worked fine on the desktop, but not on the Ipad.
Any suggestions?Ha! I was in the middle of writing a response on how to use Simple CSS and had to leave before I finished it. I get back and see you’ve figured it out; good deal. To do the same thing on the iPad we’ll use a media query for the viewport width range that the sidebar header is a different color:
/* hide sidebar More heading on tablets */ @media only screen and (min-width: 479px) and (max-width: 1200px) { .s2 .sidebar-top p { color: #f0f0f0 !important; } }Thank you so much!
Now it looks fine on the Ipad too.
Have an absolutely great day!You’re welcome; glad to help.
Hello,
I am opening this thread again because I would like to know a way to edit the MORE text instead of hide it.
Thanks in advance.
@stickymathscom – This topic is 6 months old and already marked as Resolved. Per the Forum Guidelines please don’t jump into the middle of another support topic; start your own topic instead. Thanks.
https://make.ww.wp.xz.cn/support/handbook/forum-welcome/#post-in-the-best-place
The topic ‘Remove text in sidebar top’ is closed to new replies.
