Hide Category Word and Title, Logo Issue
-
Hello again!
Im having two issues:
a) I would like to hide the word CATEGORY and the category tittle
https://orchiddmcasia.com/category/updates/b) When I check the site on a tablet, the logo becomes bigger (its size increases) taking a lot of space on the screen. How to avoid that or let the logo resize correctly in other devices?
Thank you again
RalphThe blog I need help with is: (visible only to logged in users)
-
On Soho theme, this will hide the word Category on category page titles.
.tagstring { display: none; }On the logo, add this and adjust the max width as desired.
#logo img { max-width: 40px; min-width: 20px; } -
Actually for the logo adjustment, let’s do that with the following Media Query instead.
@media screen and (max-width: 600px) { #logo img { max-width: 40px; min-width: 20px; } } -
Thank you @thesacredpath
The first code worked better for the logo issue
The second does not affect SOHO themeThank you!
R -
Hi, the logo I’m seeing right now looks different than the logo I remember seeing on your site before, and since this one is wider, it would require changes for this logo. Add the following to the bottom of your custom CSS. It only affects logo size on screens/windows 600px and narrower. I also verified it at Customize > CSS to make sure it would work.
@media screen and (max-width: 600px) { #logo img { max-width: 130px; min-width: 20px; } } -
-
- The topic ‘Hide Category Word and Title, Logo Issue’ is closed to new replies.