Forums / Cotonti / Support / Browsers display problem

chrome and safari

aiwass
#29233 2011-03-31 10:06

The problem is here:

.contentLayout .sidebar1
{
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  float: left;
  overflow: hidden;
  width: 218px;
}


You are declaring that both should be align LEFT. Seperate them, since you now tell both to align left and since you have all class="Post" nested inside the .contentLayout it makes for bad parsing. .sidebar1 should be seperate from the other.

Correct one would be:

.contentLayout
{
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  float: right;
  overflow: hidden;
  width: XXXXpx;
}
.sidebar1
{
  position: relative;
  margin: 0;
  padding: 0;
  border: 0;
  float: left;
  overflow: hidden;
  width: 218px;
}


 

 

 

Take all that money that we spend on weapons and defences each year and instead spend it feeding and clothing and educating the poor of the world, which it would many times over, not one human being excluded, and we could explore space, together, both inner and outer, forever, in peace. - Bill Hicks

https://evlear.com