Viewing 4 posts - 16 through 19 (of 19 total)
  • Author
    Posts
  • Andy Fernandez Friend
    #971880

    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?

    Pankaj Sharma Moderator
    #971936

    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.

    Andy Fernandez Friend
    #972002

    Sorry, this is new to me. Where are these queries located?

    Pankaj Sharma Moderator
    #972003

    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 .

Viewing 4 posts - 16 through 19 (of 19 total)

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