i'm trying to make two styles for links but not sure how...

Status
Not open for further replies.

mtrn

Member
20
2015
0
0
i was trying to make that:
Code:
.simple a:link, a:visited {
color: #eeeeee;
background-color: #b23600;
border-radius: 1px;
text-decoration: none;
}

a:link, a:visited {
color: #eeeeee;
background-color: #b23600;
border-radius: 1px;
text-decoration: none;
padding: 4px;
margin: 4px;
line-height: 300%;
}

for this html:
Code:
שם גם שקיות שעוזרות קצת לקחת בשר בלי שיתקלקל כל כך מהר. יש
          באתר ynet <a class="simple" href="http://www.ynet.co.il/articles/0,7340,L-4513428,00.html">רשימה</a>
          של קצביות נוספות שהם ממליצים עליהן.</li>

but it didn't work.... the "simple" links have shown up with the regular style...


what is the problem?
 
1 comment
separate for each

.simple:link, .simple:visited, .simple:hover {..........}
.simple1:link, .simple1:visited, .simple1:hover {..........}
 
Last edited:
Status
Not open for further replies.
Back
Top