Quote:
Originally Posted by TheLastSuperman
Default or custom style?
|
custom style but anyways i got it centered, here's how:
firstly as has been said before you cant just change all the alignments to center in the .CSS file because
float: center; isnt a valid CSS attribute.
so to center it you have to add 2 lines off CSS, which are:
Code:
margin-right: auto;
margin-left: auto;
add those to the: .djdot { css code like so:
instead of:
Code:
.djdot{
font: bold 13px Arial;
width: 100%; /*leave this value as is in most cases*/
}
it looks like:
Code:
.djdot{
font: bold 13px Arial;
width: 100%; /*leave this value as is in most cases*/
margin-right: auto;
margin-left: auto;
}
tested in IE ut wont center for FF will continue working on it later on....