Jump to content

CSS mystery


Recommended Posts

The problem is that the width of your right column is 185px, but the width of the modules within the right column is 191px. You need to reduce the width of those modules to 185px, or increase the width of the right column to 191px and reduce 6px from the width of the center column.

Link to comment
Share on other sites

  • 3 months later...

Yes, it is the following part of global.css in the /* global layout */ section that you need to edit:

#left_column {
   clear: left;
   width: 191px;
   margin-right: 21px;
   overflow: hidden
}
#center_column {
   width: 556px;
   margin: 0 0 30px 0;
   overflow: hidden
}
#right_column {
   width: 191px;
   margin-left: 21px;
   overflow: hidden
}

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