i am new in wordpress how to put a logo image in header part of twenty twelve them. please give me idea
Hello Rasmikanta ! Sorry but you’re in the support forum for Griffin Theme !
By the way, my problem is till unsolved, so if someone know how to align vertically (and responsively) my logo in the header, it would be great !
Thanks,
Emmanuelle
http://www.maisonainsi.com
Hey there Emmanuelle,
How are you doing today?
This can be fixed with some custom CSS. The easiest way would be to reduce the top padding of your header, the end result should look like this http://screencast.com/t/eg3giYvu3cT0. If you want to do this please try adding the following CSS code in the style.css file of your child theme or add it in your site using the following plugin:
http://wordpress.org/plugins/simple-custom-css
header {
padding-top: 15px;
}
An alternative would be if you want to keep current header height to reposition the logo itself. In this case try adding this:
header #header-logo img {
margin-top: -80px;
padding: 40px 0;
box-sizing: content-box;
}
@media (max-width: 768px){
header {
height: 160px;
padding-top: 55px;
}
}
Please let me know if this helps 🙂
Best regards,
Bojan
Hi Bojan,
I did the first option because it seemed simpler, and it works perfectly.
Thanks you very much for the time !!!
Regards,
Emmanuelle