SolitaireRose
08-04-2004, 08:33 PM
Umm. . . i'm new to this board but i've read most of other pplz questions and couldn't find what i was looking 4. I just wanted to know 2 codes. One is: how can I have a dashed border around the LEFT SIDE MODULE and possibly my chatterbox too. My second question is: what's the code for once you've visited a link a dash goes through it? I had both of these codes but my xanga messed up so now i have to start over and can't remember it. So, it'd be great if sum1 could help meeh, thnx!
Shirl
08-04-2004, 08:39 PM
Dashed border around left module....you're using CSS correct? ...I think you simply go to the part of your CSS code that pertains to the left module and add:
border:dashed;
As for the link:
A:visited
{ text-decoration:line-through;
}
SolitaireRose
08-04-2004, 08:44 PM
huh? what's CSS? lol. sorry. . . for the text decoration thing, do i have to put that script thing b4 and after it? and that goes in website stats, right?
Shirl
08-04-2004, 08:52 PM
lol...CSS is Cascading Style Sheets....it makes changing your link attributes and layout much easier, there is a tutorial here on LEIA for it if you want to learn it. I find it very useful :)
SolitaireRose
08-04-2004, 08:57 PM
umm. . . i'm not sure that's it b-cuz i used to have actual html codes that i could just put under 'Look&Feel' but i don't remember if i got from here or not. =[ thnx 4 your help, though! ^u^
JiNgLeBeLLz77
08-05-2004, 07:31 AM
here... try these codes... it goes in your header...
for the dashed border around the left side module and the line through for visited links...
<style type="text/css">
a:visited, a.footernav:visited, {
/* edits the links that the user has visited */
color:#009999;
font:normal 11px arial;
text-decoration:line-through;
}
table.left {
/* this edits the menu module */
border: 1px dashed #ffffff;
width:160px;
background-color:ffffff;
}
</style>
SolitaireRose
08-06-2004, 01:00 AM
hahaha, it worked!!!! wow, thank u so much.
JiNgLeBeLLz77
08-07-2004, 07:11 AM
you're welcome =] glad it worked!