View Full Version : Differences between browsers
eshep005
04-27-2007, 11:04 AM
Hi,
My website is http://www.e-shep.com.
In Internet Explorer my table borders are white, as specified by my code. I opened the site in Mozilla Firefox browser and the borders appear to be blue. How can I make the borders white on all browsers?
Emily
eshep005@yahoo.com
Andan
04-27-2007, 11:40 AM
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title> Emily D. Shepherd: Online Portfolio</title>
</head>
<link rel="stylesheet" type="text/css" href="style.css">
<body background="/images/bg.png" body bgcolor="#000000" scroll=auto>
<center>
<img src="/images/top.png" width="695" height="393" alt="" border="0">
<BR>
<table width="695" border="1" bgcolor="transparent" bordercolorlight="#ffffff" bordercolordark="#ffffff">
<tr>
<div class="nav"> <td width="170" td bgcolor="#000000" Valign="top">
<br>
<img src="/images/menu.png" border="0">
<p>
Remove bordercolorlight and bordercolordark declaration in your html and specify the border within your CSS.
So you would add the following to your table definition in your style.css:
table
{ border: 1px solid #FFFFFF; }
body,table,tr,td,pre {
font-family: arial, verdana, tahoma, arial;
font-size: 11px;
color: #000000;
line-height: 11px;
SCROLLBAR-HIGHLIGHT-COLOR:#00C0C0;
SCROLLBAR-SHADOW-COLOR:#000000;
SCROLLBAR-3DLIGHT-COLOR: #00C0C0;
SCROLLBAR-ARROW-COLOR:#000000;
SCROLLBAR-TRACK-COLOR: #000000;
SCROLLBAR-DARKSHADOW-COLOR: #000000;
SCROLLBAR-BASE-COLOR: #00C0C0;} <<< remove this bracket, it is extra and FF and Opera will not read this section of CSS with this extra bracket here.
}
I hope that helps. :)
eshep005
04-27-2007, 12:16 PM
Hey,
I started messing with stuff and now everytime you go to the site, the front page's font is messed up. How do I get it to show up arial all the time? I can't seem to fix it! At this point I don't care about the borders, I just want the font style fixed! Please help!
eshep005
04-27-2007, 12:19 PM
Nevermind, I got it sorted out! Had a freak-out!
Andan
04-27-2007, 12:21 PM
Ah okay, glad to hear it was sorted out. :)
Did the border work for you?
vBulletin® v3.7.0, Copyright ©2000-2008, Jelsoft Enterprises Ltd.