Trying to make the text in a list of links smaller

smoovo

New Member
You have written the style wrong, if you are using "id name" you don't use the "element name".

HTML:
#ghan-order ul li a{...}

The browser see the id ("#ghan-order") that points already to the list, and looking for the next thing... a new list ("ul") inside it. If you had "ul" inside "ul" it was OK.

So change it to this. (You have it twice)

HTML:
#ghan-order li a{...}
 

jeanm

Member
smoovo your my saviour yet again.:) It's amazing how many times a person ca not see what is wrong yet it is so obvious when pointed out by someone else. Thanks a million.
 
Top