• Howdy! Welcome to our community of more than 130.000 members devoted to web hosting. This is a great place to get special offers from web hosts and post your own requests or ads. To start posting sign up here. Cheers! /Peo, FreeWebSpace.net
managed wordpress hosting

template messed up in ff

Add a div tag around the tables you are trying to display in the fieldset.

Code:
<fieldset>
<legend>Title</legend>
<table>
<tr>
<td>...<td>
</tr>
</table>
</fieldset>

would change to:

Code:
<fieldset>
<legend>Title</legend>
<div>
<table>
<tr>
<td>...<td>
</tr>
</table>
</div>
</fieldset>
 
i have kinda same issue with fieldset,
u konw in IE the fieldset's look nice and curvy at the side
but in ff its just messed
is there a way to view the fieldset the exact same as IE does?
 
i have kinda same issue with fieldset,
u konw in IE the fieldset's look nice and curvy at the side
but in ff its just messed
is there a way to view the fieldset the exact same as IE does?

I found this on another forum, but I have NOT tested it. Let me know if it works or not.

Code:
fieldset { -moz-border-radius: 8px; border-radius: px; }

They says its buggy.
1. no antialiasing
2. background images bleed out
3. the -moz- prefix is required for Gecko at the moment

They said they added the normal CSS3 border-radius rule so that other browsers get the rounded corners.
 
can i change the borders color?
i tried
fieldset { -moz-border-radius: 8px; border-radius: px; border-color: #fffffff}

but it didn't change
 
Back
Top