New Topic

Reply To: Entry Content Pages In Firefox Different With Other Browers

Home › Forum › Help › Entry Content Pages In Firefox Different With Other Browers › Reply To: Entry Content Pages In Firefox Different With Other Browers

#1514

StartupWP
Keymaster

Looks like you’ve overridden those page’s content areas with the following style:

.page-id-143 #content {
  margin-right: -5px;
}

Updating to the following fixed the problem:

.page-id-143 #content {
  float: left;
  margin-right: -5px;
}