Viewing 3 reply threads
You must be logged in to reply to this topic.
Hi there – I’m using left menu or header_7. When viewing the site on mobile or small screens, the logo does not appear. Any way to get the logo there??
Also – I asked this on themeforest, but will ask here too:
Is it possible to have the search icon/feature under the menu (like it appears and works top right for top headers). I tried inserting the WordPress search widget in the header widget area, but it’s too wide and looks ick.
It seems the left and right header/menu really isnt’ fully supported in your theme which is a pity as it’s why I chose Tower.
I just realised I had set the following custom css to move the logo over left when viewing on large screens and this had affected the mobile view.
.header_7 #logo { left: 35% !important; }
So how can I move the menu left (reduce left margin) when viewing the left header on large screens?
Refer https://imgur.com/lLoNjU8
Thanks
Hello,
To make css code affect only certain screen sizes, you can use the @media
rule. Try editing the above code to this:
@media (min-width: 1600px){
.header_7 #logo { left: 35% !important; }
}
This makes the code affect only 1600px to wider screens. Let us know.
Best regards!
You must be logged in to reply to this topic.