Back.css
-
Your back.css over writes .clear everywhere.
You should update your css to be more specific instead of:
‘
.clear {
clear:both !important;
height:0 !important;
width:100% !important;
padding:0 !important;
margin:0 !important;
float:none !important;
background:none !important;
line-height:0 !important;
font-size:1px !important;
}
‘
Change it to‘
#ptdl_table .clear {
clear:both !important;
height:0 !important;
width:100% !important;
padding:0 !important;
margin:0 !important;
float:none !important;
background:none !important;
line-height:0 !important;
font-size:1px !important;
}
‘
The topic ‘Back.css’ is closed to new replies.