Quote:
Originally Posted by harmor19
This is what I did. I changed some attributes so you will see a different result.
Add this to your CSS
Code:
.tfieldset { border:1px solid #3e5c92}
.tlegend {
padding: 0.2em 0.7em;
border:1px solid #3e5c92;
color:#3e5c92;
font-size:120%;
text-align:right;
}
Here's the HTML code
HTML Code:
<table width="60%" border="0" align="center">
<tr>
<td>
<fieldset class="tfieldset">
<legend class="tlegend">Title</legend>
<div style="font-size: 200%; text-align: center;">$thread[title]</div> </fieldset>
</td>
</tr>
</table>
<br />
Here it is on my site
|
Ok this looks awesome but with those vague directions its going to cause confusion.
If installing NEW
Follow the directions from the original author instead of inserting the code he has insert the above HTML code
then goto your main skin CSS and at the VERY bottom input the CSS code click save.
Very nice I love it. Maybe you should post it as your own template hack.
I took it and added a couple little touch's first is I made the word TITLE bold it was sorta on the light side I know silly but hey.
And the second is a simple Blink added. So now the Word TITLE is BOLD AND BLINKS....lol
Here if you would like to do the same just substitute the above HTML for this
Code:
<table width="60%" border="0" align="center">
<tr>
<td>
<fieldset class="tfieldset">
<legend class="tlegend"><blink><b>Title</b></blink></legend>
<div style="font-size: 200%; text-align: center;">$thread[title]</div> </fieldset>
</td>
</tr>
</table>
<br />