want to modify logo placement
- The topic ‘want to modify logo placement’ is closed to new replies.
Need help? Check out our Support site, then
Trying to post here again – the first post did not go through.
I love this theme – it’s fantastic.
I want to modify the logo placement on my site, if possible. I’d like the logo to float below the name of the site, over the featured image, on the left side of the page. Currently the logo is just tacked on at the end of the page.
I tried to add the logo to the featured image but it does not display properly in different size screens.
And when I add the logo to the site, it’s too small and too high in the page.
I don’t know if this is an easy fix or not.
Thanks.
The blog I need help with is: (visible only to logged in users)
Great, glad to hear you’re liking the theme; the site is looking great!
This is a tough request, as it’s not really possible to do what you’re asking out of the box. That said, it may be possible to do using some CSS hackery. If you have the Custom Design upgrade, you may be able to do what you’re looking for using the CSS below.
.has-featured-image .featured-image:before {
background: url('http://placehold.it/200x200') no-repeat center center;
content: "";
display: block;
position: relative;
top: 101px;
left: 20px;
width: 200px;
height: 200px;
}
In the snippet above, you’ll need to swap out the background URL with your logo. You may also need to adjust the width and height values to match your logo size.