Okay
  Public Ticket #1126772
Sicky header logo size
Closed

Comments

  • pritwie started the conversation

    Hi, I made my website rawriddims.com with wordpress and talos. Everything is working but I am experiencing 2 issues and can't find a solution myself. 

    Whenever I put in my custom logo for the header I can set the dimensions in theme options to fit it nicely. The problem is with the sticky header. When scrolling down so the sticky header appears, the logo resizes to a size that is too small. Is there a way to fix this? I want to set the width and height manually so it isn't too small and still nicely visible. This problem also occurs with the logo in the footer, it's way too small and no way to make it bigger.


    Thanks in advance

  •  2,005
    Ocean replied

    Hi,

    You can add css code in WP admin -> Appearance -> Customize -> Styling Setting: http://www.awesomescreenshot.com/image/2381611/304fcd3eb53b0d2e97131eef1416a266

    .cbp-af-header.cbp-af-header-shrink .logo{
        top:15px;
    }
    .cbp-af-header.cbp-af-header-shrink .logo img {
        width: 241px;
        height: 40px;
    }
    


  • pritwie replied

    Thanks! It worked perfectly. Is there a similar code for the footer?

  •  2,005
    Ocean replied

    Hi,

    You can add this code:

    .footer-top img {
        width: 240px;
    }