PDA

View Full Version : Slide Show center


king of england
Apr-13-2008, 04:54 AM
I can't seem to get my sldeshow to center in the biobox. Any help?
Thanks in advance.
www.scottwardphotography.com (http://www.scottwardphotography.com)

denisegoldberg
Apr-13-2008, 04:58 AM
I can't seem to get my sldeshow to center in the biobox. Any help?

You were almost there! Sometimes you need to add !important in your CSS. I always try without it first, then add it if needed.

Change

#userBio {
text-align: center;
}
To

#userBio {
text-align: center !important;
}
--- Denise

king of england
Apr-14-2008, 08:25 PM
You were almost there! Sometimes you need to add !important in your CSS. I always try without it first, then add it if needed.

Change

#userBio {
text-align: center;
}
To

#userBio {
text-align: center !important;
}
--- Denise

Thanks! That did the trick.