Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #90352
    DerFabi2016
    Participant

    Hello,
    I am new to wordpress, but I am trying to set up a page and I wanted to place my header image on the right side of of the header but same height as the title. Right now the image is above my title. Can you show me how to fix this?
    http://www.sup-board-test.de

    Thank you very much!

    #90358
    Mahesh
    Participant

    @derfabi2016: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #site-logo img {
        display: inline-block;
    }
    #hgroup.with-logo {
        clear: none;
        float: left;
        padding-top: 70px;
    }
    
    @media screen and (max-width: 540px) {
    	#site-logo {
            float: none;
        }
        #hgroup.with-logo {
            float: none;
            padding-top: 20px;
        }
    }

    Regards,
    Mahesh

    #90374
    DerFabi2016
    Participant

    Hi Mahesh, thank you very much for your fast support.
    Please allow me one more small question – is it possible to have a bit more space between logo and title? To Move the title a few px to right?

    #90419
    Mahesh
    Participant

    @dergabi2016: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (min-width: 541px) {
        #hgroup.with-logo {
            padding-left: 20px;
        }
    }

    Note: Please adjust the margin-left value as you desired.

    Regards,
    Mahesh

    #90798
    DerFabi2016
    Participant

    Hi Mahesh,

    thanks a lot – it worked out.
    I have one problem since I started with catch everest.
    On my Startside http://www.sup-board-test.de I have a dead link to http://www.sup-board-test.de/#

    But I don’t know why. I never adjusted something like that.
    Can you help?

    Best Regards,
    Fabian

    #90800
    DerFabi2016
    Participant

    Ok – I found it by myself. Sorry.
    Problem was the featured Content. I managed to Switch it off.

    #90917
    Mahesh
    Participant

    @derfabi2016: Glad to know you’ve solved the issue yourself. Have a nice day.

    Regards,
    Mahesh

    #90985
    DerFabi2016
    Participant

    Hello Mahesh,

    new day, new question.
    Can you help me to disable the headline of the page on my startpage.
    I don’t want to have “Das richtige SUP Board kaufen”.

    I tried .page-id-231 .entry-title { display: none; }

    But then also the headline int the slider is gone. Thats not what I want.

    #91008
    Mahesh
    Participant

    @derfabi2016: Use the following CSS:

    #content .post-231.page .entry-header {
        display: none;
    }

    Regards,
    Mahesh

    #91015
    DerFabi2016
    Participant

    Thank you very much Mahesh!

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Align Header image and Title’ is closed to new replies.