Jump to content

couleur bizare dans les blocs latéraux


minemax1

Recommended Posts

Bonsoir,

Ligne 296 du css:

div.block .block_content {
background:#D0D3D8 url(../img/block_bg.jpg) repeat-x scroll left bottom;
border-left:1px none #D0D3D8;
border-right:1px none #D0D3D8;
min-height:20px;
padding:0.5em 0.7em 0;
}



La coupable est là
background:#D0D3D8 url(../img/block_bg.jpg) repeat-x scroll left bottom;

c'est soit la couleur de fond #D0D3D8, soit l'image du backrground block_bg.jpg qui ne correspond pas à votre attente...

Essayez avec #F1F2F4 à le place #D0D3D8

soit :

div.block .block_content {
background:#F1F2F4  url(../img/block_bg.jpg) repeat-x scroll left bottom;
border-left:1px none #D0D3D8;
border-right:1px none #D0D3D8;
min-height:20px;
padding:0.5em 0.7em 0;
}



V++

Atch

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...