Have a Few Issues I'm Trying To Solve

Hey there guys, I just have a few issues I’m trying to knock out so I can get my website up and running. (Please excuse the pictures on my site, it is an adult-erotica website)

First off: How can I change the title font colour for my pages? The title of my ‘Books’ and ‘About’ Pages are way too dark and too hard to see. (The first picture is attached)

Second: How Do I change the color of my links so that they stay one permanent color. I can hover over some of them and they will change color nicely, but for some links that I insert on certain pages or in posts, I’d like them to be one strong; static color as they are too dark to see (The example is in the image)

Third: How can I add my home page to the top of my menu list (Please excuse the picture! :^) )

Fourth: How can I make my widget font; Like in ‘Recent Posts’ and ‘Archives’ a lighter color, and how can I make it so they change colour when a visitor hovers over them?

Ok I believe those are all the questions I have. Thank you!

All the images are ordered to correspond with my questions

Hi @simoneevars,

I hope you are well today and thank you for your questions.

First off: How can I change the title font colour for my pages? The title of my ‘Books’ and ‘About’ Pages are way too dark and too hard to see. (The first picture is attached)

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Activello Options -> Other -> Custom CSS

.page .entry-title {
    color: #fff;
}

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

Second: How Do I change the color of my links so that they stay one permanent color. I can hover over some of them and they will change color nicely, but for some links that I insert on certain pages or in posts, I’d like them to be one strong; static color as they are too dark to see (The example is in the image)

Use below CSS code to achieve this as described above.

.entry-content a {
    color: #fff;
}

.entry-content a:hover {
    color: #dd9933;
}

Third: How can I add my home page to the top of my menu list (Please excuse the picture! :^) )

You can use the below plugin to achieve this.

Fourth: How can I make my widget font; Like in ‘Recent Posts’ and ‘Archives’ a lighter color, and how can I make it so they change colour when a visitor hovers over them?

Use below CSS code to achieve this as described above.

#secondary .widget h3.widget-title {
    color: #b8babf;
}
#secondary .widget h3.widget-title:hover {
    color: #dd9933;
}

Best Regards,
Movin

Wow thank you! My website is coming out perfectly thanks to your help!

You are most welcome here :slight_smile: