• Resolved bassplayer84

    (@bassplayer84)


    Is it possible to edit the logo position in the header?
    It seems it has some white space between the top bar, but it’s aligned instead to the bottom of the header itself.

    And is it possible to move the logo a bit to the left of the page?

    Thnx

Viewing 9 replies - 1 through 9 (of 9 total)
  • Hi there!

    If you post a link to your website we can talk a look a possibly suggest a code snippet for you to use.

    Cheers!

    Luke the Daft Duke

    Thread Starter bassplayer84

    (@bassplayer84)

    I was able to move the header using this snippet of code:

    .site-header img {
      margin: 0 10px 10px 0;
    }
    
    #masthead-wrap {
       padding: 0;
    }

    Which gave me this result: Screenshot

    You can paste this code in your child theme’s style.css or in a custom css plugin such as Simple Custom CSS.

    I hope that helps!

    Luke the Daft Duke

    Thread Starter bassplayer84

    (@bassplayer84)

    Thnx for reply.

    To be honest with this CSS i have now the logo more to the left of the page, but it’s still too much near the bottom part then the upper.

    In your screenshot it’s like i would like it to be ??

    thnx

    Hi again,

    It looks like the first part is not being applied. Try adding !important to the end of the first declaration. Like this:

    .site-header img {
      margin: 0 10px 10px 0 !important;
    }
    Thread Starter bassplayer84

    (@bassplayer84)

    Now it’s ok!!!

    And if i’d like to move it a bitter to the right?

    Thnx again!

    Ok,

    In the last code snippet I sent you the margin had four numbers.

    like this:

    margin: 0 10px 10px 0
    top right bottom left

    So if you adjust the last one (left) this will move it to the right (pushing it away from the left).

    Try 10px and increase it if you want to push it further right.

    .site-header img {
      margin: 0 10px 10px 10px !important;
    }
    Thread Starter bassplayer84

    (@bassplayer84)

    I do not know how to thank you!!!!

    Great teachings ??

    Your welcome. Glad you got it sorted ??

Viewing 9 replies - 1 through 9 (of 9 total)
  • The topic ‘Logo position’ is closed to new replies.