Posts Tagged ‘multiply text decoration codes’

Replace Text-Decoration In Multiply Links | Text Decoration Tutorial

multiply-text-decoration-tutorial
Just a little CSS tricks for your Multiply site, by replacing the usual underline text decoration of links in your Multiply site.

I used a small animated gif arrow image as my underline text decoration for the links when hovered,. (size of image depends on you, just make it sure it is small and will look like a line when on repeat-x)

This is the image i used arrow image (the size is 10×5)..

light bulb You can do this on all links on your entire site or just a section of your site links only..

This code is for navbar links only

a.topt:hover, a:visited.topt:hover, a:link.topt:hover, a.toptsel:hover, a:visited.toptsel:hover, a:link.toptsel:hover {
text-decoration:none;

padding-bottom: 2px;
background: url(image_url_here) repeat-x bottom ;
}

This code is for entire links..

a:hover, a:visited:hover, a:link:hover {
text-decoration:none;
padding-bottom: 2px;
background: url(image_url_here) repeat-x bottom;
}

Just choose a proper selector where you want to apply this..

You can adjust the padding to place it at the top (as overline), bottom (underline) or midlle (like strike-through)..

light bulb Value of text-decoration must be none..

NOTE: if you use the second code.. all links will have that underline image ,. including photos
in album, thumbnails (if sets in thumbnails) and all headshot links..

If you want the usual text decoration, here are some you can use,.

Value’s of text decoration

text-decoration: underline;
text-decoration: overline;
text-decoration: linethrough;

text-decoration: blink;
text-decoration: underline overline;

Be the first to comment - What do you think?  Posted by Admin - April 21, 2009 at 5:15 pm

Categories: Multiply Tutorials   Tags: multiply css codes, multiply how to, multiply text decoration codes

Subscribe by Email