Hi,
Would it be possible to edit the header code:
.td-header-style-10 .td-header-sp-logo img {
width: 100%;
Which allows for an image above the main menu, to allow it to display a different graphic/image on different pages? And also could it be edited to allow a video to display on different pages as well as graphics/images?
I am not a coding genius so any help on this would be great if it is possible. It would be brilliant if it was!!
Look forward to your response.
kind Regards
Jon
Hello joncreek,
If you want to set a different image for your each page, please notice that you will have to use a bit of CSS for this. Try the code below and for each page, you will replace the page ID, like this ->
.page-id-1191 .td-banner-wrap-full{
background-image: url(http://demo.tagdiv.com/newspaper/wp-content/uploads/2016/05/login-mod.jpg);
background-size:100% 100%;
background-repeat: no-repeat;
}
The result you should see here -> http://screencast.com/t/e2IrwNtB7kT6
This is a basic example which you should follow if you want to bring that changes. You will have to implement it yourself and check the results. If you are not aware of the further steps which are needed to take in this regard, please consider hiring a freelancer/developer to help you because we cannot provide custom work at the moment, sorry!
Thanks for the message!
Hi
The css can be added in theme panel > custom code > custom css: http://screencast.com/t/GtOSOYIH
Thanks!
Hello Gaurav,
If you want to have another image for each page, you will have to add the code that I provided you above but you should change the page ID number and the source of the image to another. -> http://screencast.com/t/j7FHb8mp
Hope this helps!
Thanks for your understanding!
Unfortunately the theme has no option to add a logo based on a specific page. You will have to add it through customization. This is the file that needs to be edited: http://screencast.com/t/whmE3nRQxG \
Thank you!
Hi,
If you want a single code for all pages, you should simply remove the page id part like so:
.page .td-banner-wrap-full{
background-image: url(http://demo.tagdiv.com/newspaper/wp-content/uploads/2016/05/login-mod.jpg);
background-size:100% 100%;
background-repeat: no-repeat;
}
Thank you!