Post titles, color and italics

Hi @movin

Per this thread:

What would the CSS be for changing post titles? I’d like to unitalicize and maybe change the font itself of them.

Is it possible to extend the logo length to go across the entire page?

Mousing over post titles gives an orange hover color, however I don’t see an option to change that hover color, only the default purple one. Does this need CSS?

I’ve tried to fiddle around with no luck. Any ideas @movin?

Hi @patremagne,

Thank you for your questions.

You have to develop custom CSS code to achieve this.

Developing custom code for custom functionality is beyond the scope of support that we provide here.

If you are not a developer then you can consider hiring a developer to develop it for you. You can hire a developer from any freelance site. Colorlib recommends the developer https://www.upwork.com/freelancers/~011652ffec8865c6d5

Best Regards,
Movin

@movin

You need complex custom code to change the hover color?

You need complex custom code to change the hover color?

You can try changing it by using the following simple CSS code.

#page .post .entry-title a:hover {
    color: #334cb1;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

I tried changing it to #808080 and nothing happened.

Could you please share me the page URL from your site where it is not working so that i can troubleshoot it?

abitterdraft.com

I troubleshooted on your site and found it is not working due to CSS specificity issue.

To resolve the issue please try using the below CSS code.

#page .post .entry-title a:hover {
    color: #808080 !important;
}