2 replies [Last post]
turco
turco's picture
Offline
Regular
Hungary
Last seen: 9 years 32 weeks ago
Hungary
Timezone: GMT+2
Joined: 2008-11-17
Posts: 28
Points: 14

Hi,

I have 2 question actually.

1- I am trying to create a list and dont know if i should use

  • or
    tags? It will be like this. So when the user clicks on one of the test hyperlinks in the list, browser will take the user to the specific part where test 1 is located. I saw this functionality in html so i am checking it in the web meanwhile as well.

1. Test1
2. Test2
3. Test3

1. Test1
1.1.Test one sub
1.2.Test one sub2

2. Test2
2.1.Test2 sub
2.2.Test2 sub2

2. in my style sheet i have the following code for my hyperlinks. So as my background being white and hyperlinks being white as well, its not seen. Do i have the ability to create another class/id like this for the list i am going create above?

a:link { 
	font-weight: bold; 
	text-decoration: none; 
	color: white;
}
 
a:visited { 
	font-weight: bold; 
	text-decoration: none; 
	color: white;
}
 
a:hover, a:active { 
	text-decoration: underline; 
	color: Black;
}

tia

Deuce
Deuce's picture
Offline
Guru
Somewhere, USA
Last seen: 5 years 46 weeks ago
Somewhere, USA
Timezone: GMT-5
Joined: 2005-11-20
Posts: 4424
Points: 1843

If it's a list of links, use

If it's a list of links, use a list.

all ยป http://dictionary.reference.com/browse/all

Google isn't a bunch of guys reading and grading web sites, it's more like a bunch of monkeys sniffing food and putting the good bananas at the top. -Triumph

turco
turco's picture
Offline
Regular
Hungary
Last seen: 9 years 32 weeks ago
Hungary
Timezone: GMT+2
Joined: 2008-11-17
Posts: 28
Points: 14

Thanks Deuce, btw i made

Thanks Deuce,

btw i made some research and solved the issue by myself Smile