This topic contains 18 replies, has 2 voices, and was last updated by Pankaj Sharma 8 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum
I found a problem when it comes to the responsive layout. I guess the logo drops to the top of the menu and makes the Header div too big and its impossible to click on content. Is there any way to hide it under the responsive layout?
Hi
Its because you are using a static style for the logo text in custom.css file
.logo-text .site-slogan {
font-size: 24px!important;
margin-top: -5px!important;
color: #039be5 !important;
}
You can apply different style for different screen size using media queries .
Here is a doc.
Sorry, this is new to me. Where are these queries located?
Hi
You can see the example in the Documentation links above .
Here is an example :
@media screen (max-width:468px) {
.logo-text .site-slogan {
font-size: 14px!important;
margin-top: -5px!important;
color: #039be5 !important;
}}
When u add this code in custom.css file , it will affect when the screen size is max. 468px , this way you can apply the different style code for different screen sizes .
This topic contains 18 replies, has 2 voices, and was last updated by Pankaj Sharma 8 years, 1 month ago.
We moved to new unified forum. Please post all new support queries in our New Forum