Hi, i’m using the newsmag theme. How do I apply a header background? All I can do is set a colour, bu I want my background for the rest of the site to also be as the header background.
Thanks!
HI
Unfortunately the theme does not have an option to set a background image for header, sorry. However this may be possible using some custom code in the file which generates the header style used. Please provide your site url so I can have a closer look and maybe I can help.
Thanks!
Hi
Try this css in theme panel > custom code > custom css to set a background image for header: http://screencast.com/t/AgKqYa2y
.td-header-row.td-header-header {
background-image: url("http://demo.tagdiv.com/newsmag/wp-content/uploads/2016/05/2-1-640x479.jpg");
}
You need to replace the current url with the one of the image that you want it as background for header.
Hope this helps.
thanks!
Hi again! that worked, thanks very much. Is there any way to also make my logo a bit bigger? I don’t know why it’s so tiny, I mean there’s room for it to be bigger.
Thanks!
Hi! I’ve tried that, but the logo remains small, there’s room for it to be bigger but I don’t know how to do that.
Thanks!
HI @isakmoller
Try this css to make the logo image a bit bigger: http://screencast.com/t/rdPnu7UNV
.td-header-sp-logo img {
width: 85%;
max-height: 110px;
}
Let me know how it goes.
Thanks!
Hi, worked great! I changed the 85% on width to 120px instead and it looks great!
Thanks for the help!