Alright, I added the following to stylesheet_tm.css and stylesheet_boxes.css
But nothing changed :/HTML Code:.sideBoxsubscribe { text-align: left; }
Alright, I added the following to stylesheet_tm.css and stylesheet_boxes.css
But nothing changed :/HTML Code:.sideBoxsubscribe { text-align: left; }
I think what you want is...
.box #subscribe { text-align: left; }
That tells it to apply the style to something with an id of "subscribe" when it's inside something with a class of "box". I think.
Rob
Neither of these worked :\
#subscribe {text-align:left}
.box #subscribe { text-align: left; }
I even added them both to all the css files and still it's not working.
Well, it worked.
Thanks guys!#subscribeContent .box { text-align: left; }
.box #subscribeContent { text-align: left; }