Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #282627
    Lars Lilleby Macedo
    Participant

    Hi! I work with the website http://www.villdyret.eggehistorielag.com. I want to add title and tagline in the white part of the image. What CSS can I use then?

    Is there an option to remove the top bar (menu bar) where it now says “HISTORIEN”

    #282700
    Skandha
    Participant

    @steinkjerarkivet: Hello there,
    To remove the menu
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #masthead {
        display: none;
    }

    You seem to have added title and tagline over the image. Is this issue resolved?

    Let me know if this helps you out!
    Kind Regards,
    Skandha

    #282730
    Lars Lilleby Macedo
    Participant

    Thank you! Now the menu is gone! 🙂

    I want to move the title and tagline further up in the image so that both are higher on the screen and remain in the white sky? Is it possible?

    #282735
    Skandha
    Participant

    @steinkjerarkivet: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .custom-header-content {
        top: 20% !important;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    #282740
    Lars Lilleby Macedo
    Participant

    You are my hero! Tnx! 🙂

    #282741
    Lars Lilleby Macedo
    Participant

    @Skanda: One more; If I want to do the same on mobile view / ipad – is there a separate CSS I can use?

    #282919
    Skandha
    Participant

    @steinkjerarkivet: Hello there,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (max-width: 767px) {
    	.custom-header-content {
    	    padding-top: 40px;
    	    padding-bottom: 320px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘How to move title and tagline?’ is closed to new replies.