Hi
I just installed Firefox on my computer and wondered of course how my website would look in this browser. The general lay-out showed fine, but some details don't show. I want to get rid of them...
is the URL
- As you might see the top menu should have a grey background. This is done as following:
The lay-out is a table, so the code for the tr of the menu is:
The CSS code for tdLichtGrijs is:
- Another problem is the title (e.g. receive a free USB memory stick. I define the p with the class: pLinkVetGrootZwart. The css code for this class is:
This title shows in Firefox without any style.
- Also when I scroll down, the background is gone (the grey stripes to the left and right of the main table). Is this a browser issue?
Thanks a lot
Steven
I just installed Firefox on my computer and wondered of course how my website would look in this browser. The general lay-out showed fine, but some details don't show. I want to get rid of them...
is the URL
- As you might see the top menu should have a grey background. This is done as following:
The lay-out is a table, so the code for the tr of the menu is:
Code:
<tr>
<td width="780" height="22" class="tdLichtGrijs">
</td>
</tr>
The CSS code for tdLichtGrijs is:
Code:
.tdLichtGrijs
{
BACKGROUND-COLOR: #cccccc
}
- Another problem is the title (e.g. receive a free USB memory stick. I define the p with the class: pLinkVetGrootZwart. The css code for this class is:
Code:
.pLinkVetGrootZwart
{
FONT-WEIGHT: bold;
FONT-SIZE: 14px;
COLOR: #000000;
FONT-FAMILY: Arial, Helvetica, sans-serif;
TEXT-DECORATION: none
}
- Also when I scroll down, the background is gone (the grey stripes to the left and right of the main table). Is this a browser issue?
Thanks a lot
Steven