Jump to content

border around block problem


Recommended Posts

Hi all,

 

Im trying to make borders around the left blocks. for expample this is my code

 

 

div.block .block_content {

padding: 0.5em;

background:url('../img2/block_bg.png') repeat bottom left;

min-height: 16px

border-left: 1px solid #0832a3;

border-right: 1px solid #0832a3;

//-moz-border-radius-topleft: 8px;

//-moz-border-radius-topright: 8px;

//border-top-right-radius: 8px;

//border-top-left-radius: 8px;

 

Now it shows only the right border but the left border dont show and some parts are shown in the middle of the homecontent.

 

What im doing wrong ?

Link to comment
Share on other sites

According to your actual css you have not added the left border. I would check your css to make sure you don't have a slight mistake.

 

To get rid of the border lines in the center column do the following:

 

#center_column .products_block .block_content {
   background: none repeat scroll 0 0 transparent;
   border: none;
   padding: 0;
}

 

Simply add 'border: none;' to thmskins/css/white.css. This can be found around line 1187.

 

Hope that helps!

 

Marty Shue

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