Link to home
Start Free TrialLog in
Avatar of jonathanduane2010
jonathanduane2010

asked on

Wanting to change the background colour of images on footer

Hi,

On my site piratescove.yourcitybeats.com

I want to change the colour of the three boxes down at the bottom, i have changed the colour of the images using photoshop, but it looks like css is controlling them, i was wondering could someone help me?

i want to change the colour to the same colour as the red, green and blue here

#DF0E03
#185491
#389C1D
Avatar of Ahmed Hussein
Ahmed Hussein
Flag of Egypt image

in your css file find .red1

and change the background to this:

.red1 {background: #F00; } replace with {background: #DF0E03;}

Open in new window


then search for .green1 and change the background for this:

.green1{background: #0C0; } replace with {background: #185491;}

Open in new window


then search for .blue1 and change the background for this:

.blue1{background: #00F; } replace with {background: #389C1D;}

Open in new window


That's it.

~AG
Avatar of jonathanduane2010
jonathanduane2010

ASKER

thanks!

Which css file is it located??
ASKER CERTIFIED SOLUTION
Avatar of Ahmed Hussein
Ahmed Hussein
Flag of Egypt image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial