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
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
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;
}
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;
}
I do not know how to thank you!!!!
Great teachings 😉
Your welcome. Glad you got it sorted 🙂