Tyle to ja też wiem ale gdzie konkretnie?
Kolor ramki to .tborder, a linki to a i a:visited
Wielkie dzięki. Nidrax i Trufelek - otrzymujecie +
PS: Przejrzałem całe global.css i nie znalazłem tego co chciałem :huh:. w tborder mam tylko to:
Kod:
.tborder {
background: #000000
margin: auto auto;
border: 0px solid #0F5C8E;
width 100%;
}
A koloru tekstu to już w ogóle nie wiem gdzie szukać
.
.tborder:
Kod:
.tborder {
background: #000000;
margin: auto auto;
border: 0px solid #0F5C8E; <---- tutaj kolor ramki
width 100%;
}
a opcje linków powinieneś mieć na początku global.css, zaraz za body.
U mnie wygląda to tak:
Kod:
body {
background:#6d5f4c url(images/writersheaven/bg.jpg) no-repeat fixed center top;
background-size: 100%;
color: #000;
font-family: Verdana, Arial, Sans-Serif;
font-size: 13px;
text-align: center; /* IE 5 fix */
line-height: 1.4;
}
a:link {
color: #5e3518;
text-decoration: none;
}
a:visited {
color: #5e3518;
text-decoration: none;
}
a:hover, a:active {
color: #000;
text-decoration: underline;
}
Tam gdzie masz
color: wpisujesz kolor tekstu.
a:link to zwykłe linki,
a:visited to linki odwiedzone (zazwyczaj mają ten sam kolor co zwykłe),
a:hover to linki w momencie najechania na nie myszką.