Hi,
I created a CSS that work fine on my IE 6.0.2900 (SP2) but I'm having
customers that have problems with it and they're on IE 6.0.2800
(SP1)...
The problem looks like if the stylesheet (in particular the class
LigneTableau_Noir_SansHauteur) was ignored.
Could you test this code on your browser and tell me if you see this
particular points :
- all cells have a left border of 1px black except cells "val3" and
"val5"
- the first link is on the left of the cell and is black and bold
- the second link is centered in the cell and its color is the browser
default color for a link
- all values are centered in their cell
Thanks in advance, I just have no more ideas after 2 days of headache !
Thierry38080
<html><head><title>Test</title>
<style type="text/css">
TD {
FONT-SIZE: 10pt;
FONT-FAMILY: Arial, Verdana, 'Courier New', 'Times New Roman'
}
.LigneTableau_Noir_SansHauteur tr {
TEXT-ALIGN: center;
}
.LigneTableau_Noir_SansHauteur td {
border-color: black;
border-left-style: solid;
border-left-width: 1px;
}
.LigneTableau_Noir_SansHauteur td.sans {
border-right-style: none;
border-left-style: none;
}
.LigneTableau_Noir_SansHauteur td.celD2 {
border-left-style: none;
border-right-style: solid;
border-right-width: 1px;
}
.LigneTableau_Noir_SansHauteur a.lien {
color: #000000;
font-weight: bold;
}
</style></head>
<body leftmargin="10" topmargin="10" marginwidth="10"
marginheight="10">
<table width="700" align="center">
<span class="LigneTableau_Noir_SansHauteur">
<tr id="li0">
<td align="left"> <a href="javascript:;" class="lien">Test
link</a></td>
<td><a href="javascript:;">Another link</a></td>
<td>0</td><td>val1</td>
<td><input type="text" size="4" maxlength="4" tabindex="1"
id="first0" name="0_Quantite" class="ZoneDeSaisie" value="12"/></td>
<td><b>val2</b></td><td class="sans">val3</td>
<td>val4</td><td class="celD2">val5</td>
</tr>
</span>
</table>
</body>
</html>
thierry38080 wrote:
> Hi,
>
> I created a CSS that work fine on my IE 6.0.2900 (SP2) but I'm having
> customers that have problems with it and they're on IE 6.0.2800
> (SP1)...
> The problem looks like if the stylesheet (in particular the class
> LigneTableau_Noir_SansHauteur) was ignored.
> Could you test this code on your browser and tell me if you see this
> particular points :
> - all cells have a left border of 1px black except cells "val3" and
> "val5"
> - the first link is on the left of the cell and is black and bold
> - the second link is centered in the cell and its color is the browser
> default color for a link
> - all values are centered in their cell
>
> Thanks in advance, I just have no more ideas after 2 days of headache !
<snip code>
If you put that code in a page and put it online, more people are
willing to have a look. Also, since you are talking about a particular
class possibly being ignored, there could be an error in the real
stylesheet, that isn't copied into the code you gave. Best show real
online examples, especially when looking for an error.
--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Pearl Jam - Black
Els wrote:
> thierry38080 wrote:
>
>
> <snip code>
<snip my own reply>
Oh, and you can't have a <span> between <table> and <tr>. Validate
your code and weird problems may disappear, you never know...
--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Pearl Jam - Black
You're right Els and in fact it's not the exact code.
I had already made changes but I took an old version of my code, sorry
:-(
In fact, even after the change, my customers still have exactly the
same problem.
I'll put this code on line as soon as I can but for the moment it is
not possible.
That's the good one (only the table code) :
<table width="700" align="center"
class="LigneTableau_Noir_SansHauteur">
<tr id="li0">
<td align="left"> <a href="javascript:;" class="lien">Test
link</a></td>
<td><a href="javascript:;">Another link</a></td>
<td>0</td><td>val1</td>
<td><input type="text" size="4" maxlength="4" tabindex="1" id="first0"
name="0_Quantite" class="ZoneDeSaisie" value="12"/></td>
<td><b>val2</b></td><td class="sans">val3</td>
<td>val4</td><td class="celD2">val5</td>
</tr>
</table>
thierry38080 wrote:
> I put a link to my code here :
>
> http://tschinfo.free.fr/test.html
Now if you would quote the relevant bits of messages you reply to, I
wouldn't have to go back to find the first message to remember what
the problem was with that page.
If you think GoogleGroups is to blame for your non-quoting style,
please read this link before replying:
http://www.safalra.com/special/googlegroupsreply/
Anyway - your first message said that people with IE SP1 'have
problems', and that one particular class seems to be ignored.
I don't have SP1, but the page displays the same in IE5.5, IE6.0 and
Opera 8.5. on my Win XP box. What exactly is it that is different for
your SP1 visitors?
--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Skunk Anansie - All in the Name of Pity
The problem is that the style "LigneTableau_Noir_SansHauteur" seems not
to be considered for these users.
The whole cells are without any style : no left border of 1px, items
not centered, and link in blue (default) insted of black like the class
"LigneTableau_Noir_SansHauteur a.lien" is intended to do...
thierry38080 wrote:
> The problem is that the style "LigneTableau_Noir_SansHauteur" seems not
> to be considered for these users.
> The whole cells are without any style : no left border of 1px, items
> not centered, and link in blue (default) insted of black like the class
> "LigneTableau_Noir_SansHauteur a.lien" is intended to do...
You're not quoting, and replying to the wrong message.
Once more:
http://www.safalra.com/special/googlegroupsreply/
--
Els http://locusmeus.com/
Sonhos vem. Sonhos vão. O resto é imperfeito.
- Renato Russo -
Now playing: Mr. Big - Daddy, Brother, Lover, Little Boy (The Electric
Drill Song)
Excuse me but I simply use the functionnality of google groups (Reply).
It's very simple to follow the conversation in GoogleGroups, and I
think it's completly useless to quote all messages, it just make the
page longer and not pleasant to read.
I've been using GoogleGroups since several years and nobody never made
such remark.
Anyway, I think also that we are far away for the original subject...
Els a =E9crit :
> thierry38080 wrote:
>
>
> You're not quoting, and replying to the wrong message.
> Once more:
> http://www.safalra.com/special/googlegroupsreply/
>
> --
> Els http://locusmeus.com/
> Sonhos vem. Sonhos v=E3o. O resto =E9 imperfeito.
> - Renato Russo -
> Now playing: Mr. Big - Daddy, Brother, Lover, Little Boy (The Electric
> Drill Song)
thierry38080 wrote:
> Excuse me but I simply use the functionnality of google groups (Reply).
As mentioned at the link you have been pointed to - Google Groups' basic
reply link is considered broken.
> It's very simple to follow the conversation in GoogleGroups,
Not everybody uses GoogleGroups, and it suffers from the problems of
messages arriving out of order just like any other Usenet service.
> and I think it's completly useless to quote all messages, it just make the
> page longer and not pleasant to read.
Most of the rest of us disagree and would appreciate you conforming to the
norms of this community...
... which includes not top posting.
http://www.allmyfaqs.net/faq.pl?How_to_post
--
David Dorward <http://blog.dorward.me.uk/> <http://dorward.me.uk/>
Home is where the ~/.bashrc is