Shape 5

Joomla Templates => Touch of Soul - Club => : jarmer March 22, 2010, 10:24:53 AM



: Left Align Poll
: jarmer March 22, 2010, 10:24:53 AM
my site:

http://devlo.asaw.org

I created a new poll, published it to a module on the homepage, gave it the module class suffix "-light" to give it a white background, but now all the options are centered and squished together.  It was not that way when I left the class suffix alone, but I don't want the black background.

Is there an easier way to change the poll's color to a white background, black text?  or center / un-squish the options with the "-light" modifier?

Thanks for the help.


: Re: Left Align Poll
: mikek March 22, 2010, 11:43:12 AM
Hello, in the file template_css.css at line 147 you'll find:

table {
margin-left:auto;
margin-right:auto;
}

change it to:

table {
margin-right:auto;
}


: Re: Left Align Poll
: jarmer March 22, 2010, 12:49:29 PM
Thanks, that did left-align it, but I'm afraid the spacing still looks bad.  They are super-tight together vertically, how can I add some spacing so they don't look so cramped?


: Re: Left Align Poll
: mikek March 22, 2010, 01:22:11 PM
Hello, it looks like the code is still on your site, it needs to be changed to the above for it to be left aligned and then at the very bottom of template_css.css try adding:

table tr {
margin-top:6px;
}


: Re: Left Align Poll
: jarmer April 13, 2010, 01:13:52 PM
In Chrome, the text is left aligned, awesome!

However, in IE it's still centered, and the text is still squished together vertically.  I've made both modifications to the templace_css.css file as well, any ideas?

Thanks....


: Re: Left Align Poll
: mikek April 14, 2010, 07:10:45 AM
Hello, you can also try adding this:

.pollstableborder-light td, .pollstableborder-light label {
text-align:left;
direction:ltr;
}