Hi @krisbinns ,
WP Job Manager follows the styling of your existing WordPress theme. The Job Header background can be easily customized via your theme. An example CSS to customize the background of the Job Title to Blue would be:
h1.entry-title {
background-color: blue;
}
Hope this helps!
Hi Deric,
Thank you for your reply. I tried adding that code to additional CSS in the theme customization but unfortunately nothing changed.
@krisbinns
can you provide a link to your site, so we can take a closer look
Yes, no problem. Thank you.
I have not yet added the jobs and made them live.
[ redundant link removed ]
-
This reply was modified 4 years, 3 months ago by
krisbinns.
-
This reply was modified 4 years, 3 months ago by
Jan Dembowski.
@krisbinns
an active job would be nice, otherwise we can´t see the header you´re talking about
Here is the link to the job that is now live:
[ redundant link removed ]
Thanks.
this should be the right CSS
.page-title {
background-size: cover;
background-position: center center;
background-repeat: no-repeat;
background-color: red;
}
Just change background-color: red to your needs
also you need to edit the before item with this
.page-title:before {
position: absolute;
content: '';
left: 0px;
top: 0px;
width: 100%;
height: 100%;
display: block;
background-color: red;
}
Thank you so much, that worked!
I really appreciate your help.
Have a great day,
Kris