View Single Post
  #3  
Old 24th February 2011, 06:14
cdx1 cdx1 is offline
Senior Member
 
Join Date: Jan 2011
P2P
Posts: 33
Default
Quote:
Originally Posted by TheGrudge View Post
A very nice skin, I sure like it but I do not understand why the title description of each block is appearing on top and at bottom side once again.

Is there a way to get rid of the bottom block title ?
XoLWoX will not know as he does not make the themes he steals them from others lol

but to answer your question open

style/mimetica/block.tpl

find

Code:
<table cellpadding="0" cellspacing="0"  width="100%" align="center">
<tr>
<td width="70" height=49" border="0"><img src="style/mimetica/images/blk_07.gif" /></td>
<td width="100%" height=49" valign="center" background="style/mimetica/images/blk_07_tile.gif" style="text-align:center;  color: #8B7500; size: 8px;"  ><b><tag:block_title /></b></td>
<td width="85" height=49" border="0"><img src="style/mimetica/images/blk_08.gif" /></td>
</tr>
</table>
change to

Code:
<table cellpadding="0" cellspacing="0"  width="100%" align="center">
<tr>
<td width="70" height=49" border="0"><img src="style/mimetica/images/blk_07.gif" /></td>
<td width="100%" height=49" valign="center" background="style/mimetica/images/blk_07_tile.gif"></td>
<td width="85" height=49" border="0"><img src="style/mimetica/images/blk_08.gif" /></td>
</tr>
</table>
Reply With Quote