Jump to content

Changing colors of footer


Recommended Posts

Hi,

I want to change the colors of the footer of the default theme.

I have managed to change background color of the footer by changing:

themes/default-bootstrap/css/global.css:

 

.footer-container {
      background: url(../img/footer-bg.png) repeat-x #d33479; } }

 

where d33479 is the new (pink) background color

I also managed to change most text colors to white by changing:

 

    .footer-container #footer a {
      color: #fff; }

 

In the same file

 

Now I want to change the colors of the blockcontact-info, because it's now half whit half grey. I also want to change the block with newsletter and social media info, which seems to be in footer-container.

But I can't find where to change these settings.

Can anybody show me the right place?

I am using 1.6.1.0 and the link is:

http://wisselshop.nl

 

Thanks,

Roger

 

Link to comment
Share on other sites

Try in themes/YOUR_THEME/css/global.css around line 7060 you should find

        .footer-container #footer #block_contact_infos > div ul li {
          padding: 0 0 7px 4px;
          overflow: hidden;
          line-height: 30px; }

change this to 

.footer-container #footer #block_contact_infos > div ul li {
          padding: 0 0 7px 4px;
          overflow: hidden;
          line-height: 30px; 
	  color: #fff;}
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...