Delish
Delish

Reputation: 77

Wordpress theme style colour changes

Thanks in advance for any help given :)

Im fairly new to web design and am still learning php and css on the fly but can read and understand the code due to previous experience.

http://wilbyrne.com/esa/

Thats the address for the website im currently looking at.. im aware its very messy and untidy but im mainly looking to change the grey colour of the 4 teaser boxes underneath the slider on the main page.

enter image description here

the box that is blue is being hovered over and im looking to change each box colour independantly of the style..

im not too sure what is needed for any advice or help on this..

so any code requests i will gladly post :)

Thanks in advance..

BenJi

Upvotes: 0

Views: 144

Answers (1)

dom
dom

Reputation: 356

your looking for .overlay .tran03slinear classes they seem to be included in your main index so im guessing as its wordpress there is a function that hooks into wp_head with the css possibly look in you themes function file also in any head files for a block either inside a php function with add_action('wp_head','the_function_name'); if its in the head it could just be wrapped in the <style> markup. alternatively you could just override the css by re declaring .overlay>.tran03slinear in you css files so ts outputted last that way it will override what is already there

Upvotes: 1

Related Questions