 |
|
|
| View previous topic :: View next topic |
| Author |
Message |
wiggumdk
Joined: 13 Feb 2006 Posts: 1
|
Posted: Mon Feb 13, 2006 5:05 pm CSS : IE and Firefox not the same |
|
|
|
Homepage:
http://buccaneers.maddenzonen.dk/feed.php
CSS:
http://buccaneers.maddenzonen.dk/style/feed.css
CSS code looks like this:
| Code: |
body {
background-color: white;
font-family: arial, sans-serif;
color: #000000;
font-size: 70%;
}
/* begin styles for RSS Feed */
.rss_box {
width: 265px;
background-color: #ffffff;
border: 1px solid black;
}
.rss_items {
margin-top: 0px;
padding: 0.5em; 0.5em;
margin-left: 0px;
color:#000000;
}
.rss_title {
padding: 5px 5px;
font-size: 10pt;
background-color: #BD0839;
color: white;
text-align: center;
}
.rss_item {
list-style: none;
text-align: justify;
padding-bottom: 10px;
}
.rss_item a {
text-decoration: none;
}
a:hover {
text-decoration: underline;
}
a:visited {
text-decoration: line-through;
}
.rss_date {
color: #F87217;
} |
Now in IE all the functions work perfectly but in Firefox the function
| Code: |
a:visited {
text-decoration: line-through;
} |
has no effect what so ever. Why?
Hope you guys can help me on how to fix this. Thanks. |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8749 Location: Castle Pines North, CO USA
|
|
errorlevel_03
Joined: 11 Feb 2006 Posts: 27
|
Posted: Tue Feb 14, 2006 6:47 pm |
|
|
|
| You may need to update Firefox to 1.5 |
|
angstmann

Joined: 28 Sep 2006 Posts: 1 Location: Co. Durham, UK
|
Posted: Thu Sep 28, 2006 12:43 am |
|
|
|
I am testing this in Firefox 1.5 on Mac and Windows and also in other browsers too. As the previous poster states, it works in IE. It does not work for me in ANYTHING other than IE. Not what I want! Anyone able to shed some more light on this. I would be very grateful. Thanks |
|
Corey Bryant Site Admin

Joined: 15 May 2004 Posts: 8749 Location: Castle Pines North, CO USA
|
|
gary.newelluk
Joined: 12 May 2005 Posts: 548 Location: Peterhead, Scotland
|
Posted: Thu Sep 28, 2006 2:47 pm |
|
|
|
I haven't been able to reproduce this because your links no longer appear to be working but....
I remember reading somewhere (maybe Degsy said it...) but the link order in css must be in the correct order and the way to remember it is love hate.
For example.
a:link (Lovehate)
a:visited (loVehate)
a:hover(loveHate)
Therefore I would suggest out of pure chance that you rearrange your css as follows:
| Code: |
body {
background-color: white;
font-family: arial, sans-serif;
color: #000000;
font-size: 70%;
}
/* begin styles for RSS Feed */
.rss_box {
width: 265px;
background-color: #ffffff;
border: 1px solid black;
}
.rss_items {
margin-top: 0px;
padding: 0.5em; 0.5em;
margin-left: 0px;
color:#000000;
}
.rss_title {
padding: 5px 5px;
font-size: 10pt;
background-color: #BD0839;
color: white;
text-align: center;
}
.rss_item {
list-style: none;
text-align: justify;
padding-bottom: 10px;
}
.rss_item a {
text-decoration: none;
}
a:visited {
text-decoration: line-through;
}
a:hover {
text-decoration: underline;
}
.rss_date {
color: #F87217;
}
|
As I say I can't reproduce your problem so this is just a guess but hopefully it will sort you out. |
|
|
|
You cannot post new topics in this forum You cannot reply to topics in this forum You cannot edit your posts in this forum You cannot delete your posts in this forum You cannot vote in polls in this forum
|
|
|
|
|
 |
|
|
|
|
|
|
|