Hi Support,
I have uploaded a header to general stying.
However, is it possible to have a different header on the home page. What CSS would I use?
Thanks in advance,
Paul
Hi Wils1234!
You have to add a css replacment, to header.php file and us an if statment, so it is visible only on homepage
if ( is_home() ) { ?>
<style>
your css
</style>
<?php } ?>
Please do let us know if we can do anything else for you
Cheers!
Basilis
Hi Basilis,
Please could you tell what CSS I need to put there…
Thanks in advance.
Paul
Hi Paul,
Thanks for getting back to us!
You need to have a CSS class or id for the header that will only show on the homepage, and the CSS should look similar to this:
.yourclass {
display: block;
}
Let me know if you need further assistance.
Best regards,
Jordan
Hi Jordan,
I have placed this code in the header.php with the url to the image but it does not show.
Is there anything else I need to do?
Thanks in advance,
Paul
if ( is_home() ) { ?>
<style>
.yourclass {
display: block;
content:url(http://);
}
</style>
<?php } ?>