MyBB Community Forums

Full Version: Table not reading from defined class in CSS
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
I want the border to collapse on a table I have created. Heres what I did:

Edit in header:
<table class="coll" border="1" width="1175">
<tr><td align="right">

	<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" />{$lang->toplinks_help}</a></li>
				</ul>
<td><tr></table>


CSS:
table.coll 
{
border-collapse: collapse
}


But nothing happens. What am I doing wrong?
in the CSS don't use (table.coll) just use .coll thats the right way you can do.