Crossed words @ Theme Andreas08 s9y v2.0

Skinning and designing Serendipity (CSS, HTML, Smarty)
Post Reply
hauptstadtstudent
Posts: 2
Joined: Wed May 30, 2007 9:33 am

Crossed words @ Theme Andreas08 s9y v2.0

Post by hauptstadtstudent »

When I post a link, the words are crossed by a line. This appears only at Firefox with Mac I think. Can somebody with Windows try this? With Safari on Mac the crossing doesn't appear.

I've no Idea why. Any hints?

<a href="http://das.isbloe.de/durchgestrichene Links.jpg">Here a picture</a> how it looks like with combination Firefox+Mac
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Re: Crossed words @ Theme Andreas08 s9y v2.0

Post by garvinhicking »

Hi!


You can check your style.css CSS stylesheet and search for "strike", somewhere there should be the indiciation of how links are formatted.

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
hauptstadtstudent
Posts: 2
Joined: Wed May 30, 2007 9:33 am

Post by hauptstadtstudent »

No "strike" in any css :(
Don Chambers
Regular
Posts: 3657
Joined: Mon Feb 13, 2006 2:40 am
Location: Chicago, IL, USA
Contact:

Post by Don Chambers »

Look for text-decoration: line-through. The most common use I have seen is:

Code: Select all

a:visited {
     text-decoration: line-through;
}
And I would bet the offending line(s) in your style.css sheet are:

Code: Select all

.serendipity_entry_body a:visited, .serendipity_entry_extended a:visited { text-decoration: line-through; }
Your options for text-decoration are none, line-through, underline, overline, and blink (which does not work in IE).

FYI - posting a link to your live blog (if it is live) usually yields faster, and more complete, responses.
=Don=
Post Reply