My goal is to align the copyright to the sides, but in mozilla footer doesn't look perfect, when I open it up in firebug the float is missing, but in IE it's perfect.
Thanks for any help!
*EDIT* seems to be working after cleaning up the browser cache.
Attachment 108414
Attachment 108415
Code:
.footer_copyright,
.footer_morecopyright {
padding-bottom:{vb:math {vb:stylevar padding}/2};
color:{vb:stylevar footer_copyright_color};
font:{vb:stylevar footer_copyright_font};
margin-top: {vb:math {vb:stylevar padding}*1};
text-align:center;
display:block;
}
Replaced with this:
Code:
.footer_copyright {
color:{vb:stylevar footer_copyright_color};
font:{vb:stylevar footer_copyright_font};
display:inline-block;
float:{vb:stylevar left};
max-width:{vb:math {vb:stylevar form_minWidth}/2};
margin-top: {vb:math {vb:stylevar padding}*1};
text-align:left;
padding: 0 {vb:math 2 * {vb:stylevar padding}} {vb:math {vb:stylevar padding}*2};
}
.footer_morecopyright {
color:{vb:stylevar footer_copyright_color};
font:{vb:stylevar footer_copyright_font};
display:inline-block;
float:{vb:stylevar right};
max-width:{vb:math {vb:stylevar form_minWidth}/2};
margin-top: {vb:math {vb:stylevar padding}*1};
text-align:right;
padding: 0 {vb:math 2 * {vb:stylevar padding}} {vb:math {vb:stylevar padding}*2};
}