Tagged: ,

Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #15435
    mtporter
    Member

    Only want to keep image at the very top when browser is narrowed and when displayed in a smartphone… where and what to put in the CSS file?

    #15447
    Sakin
    Keymaster

    @mtporter: I don’t get it what you mean. Can you send me your site URL and let me know what you want.

    #15448
    mtporter
    Member

    http://www.porterwebdesigns.com/tcc/

    trying to develop a WP site for http://www.thecomedycatch.com

    anyway, if you make your browser window narrow or view on a smartphone, the header image drops a bit…

    #15450
    Sakin
    Keymaster

    @mtporter: I see that there is nothing in header content. So, you can hide that by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #header-content { display: none; }

    #15452
    mtporter
    Member

    PERFECT!!

    #36492
    acetumang
    Member

    help! i want to edit my header opacity so that my background image will be shown. what will i do? thanks in advance. http://www.ccsfp.comlu.com

    #36494
    Sakin
    Keymaster

    @acetumang: You can either make it transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background-color: transparent;
    }

    Or instead you can use RGBA color code and make it 79% transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background: rgba(255, 255, 255, 0.7);
    }
    #36496
    acetumang
    Member

    i already fixed it. Thanks! its branding background: rgba(0, 0, 0, 0.7);
    i thought it was #masthead.

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Header’ is closed to new replies.