Text colour & Post info

Hi - I love the Dazzling theme. Although at the moment trying to come to terms with it all but it’s definitely the best theme I’ve seen!

  1. I want to change the colour for the Post Title text slider colour, Continue Reading text, etc…they are all green as default. Is there a way to do this?

  2. Underneath each Post Title is Date, Author, Leave a comment, etc. Is there anyway to remove these? Really I just want to keep the date/leave a comment.

Hope you can point me in the right direction.
Thanks!

Hi Johnny,

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

1. I want to change the colour for the Post Title text slider colour, Continue Reading text, etc…they are all green as default. Is there a way to do this?

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 -> Dazzling Options -> Other -> Custom CSS

.flex-caption h2.entry-title {
    color: #000;
}
a.btn.btn-default.read-more {
    color: #000;
}

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

2. Underneath each Post Title is Date, Author, Leave a comment, etc. Is there anyway to remove these? Really I just want to keep the date/leave a comment.

You can remove this by using below CSS code as described above.

.entry-meta span.comments-link, .entry-meta span.byline {
    display: none;
}

Best Regards,
Movin