MyBB Community Forums

Full Version: Doesn't round the tr on forumbit
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
I have a problem for round the end of line of Threads/Posts/Last Post.
I use the border -radius on tcat css class
http://xlastpriv.xaa.pl/
Use this for rounding;
-moz-border-radius: 3px;
-webkit-border-radius: 3px;
i using this , i have problem on bottom rigth radius border
Use this for bottom rounding:
border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
-webkit-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-radius-bottomright: 5px;
in tr this isn't ok;/, bottom rounding is 0 on tr;/
I think you need to add above code in tcat{ ... } style to effect only tcat area.
.tcat {
border-spacing:0;
border:0;
background: url(../../../images/cell.png);
color: #000000;
font-size: 11px;
height:20px;
position:relative;
background-position:0px 60px ;
border-bottom-left-radius: 5px;
-moz-border-radius-bottomleft: 5px;
-webkit-border-radius-bottomleft: 5px;
border-bottom-right-radius: 5px;
-moz-border-radius-bottomright: 5px;
-webkit-border-radius-bottomright: 5px;
}
this my tcat in tr no roading;/
You've to add this in here too;
.tcat2 {
border-bottom-right-radius: 6px;
border-bottom-left-radius: 6px;
}

.tcat3 {
width : 100%;
height : 8px;
} 
this class not be usedBig Grin
But this used in forumbit_depth2_cat template;
<table border="0" cellspacing="0" cellpadding="4" class="tborder">

<thead  >

<tr>

<td class="thead" colspan="5">

<div class="expcolimage"><img src="images/collapse.gif" id="cat_1_img" class="expander" alt="[-]" title="[-]" /></div>

<div><strong><a href="forumdisplay.php?fid=1">Kategoria</a></strong></div>

</td>

</tr>

</thead>



<tbody   id="cat_1_e" >

<tr class="tcat3"> </tr>

<tr class="tcat">

<th colspan="2" >dsasdadsasddsa</th>

<th  width="85" align="center">Wątków</th>

<th  width="85" align="center">Postów</th>

<th  width="200" align="right" style=" border-bottom-left-radius:6px;">Ostatni post</th>

</tr>
Pages: 1 2