Tue, 2008-03-25 08:46
ok so i have this project and heres what i cant figure out:
1.how do you modify the links style-I want them to look like normal text in my drop down menus?
2. how do you center the contents in tables via css?
help will be deeply appreciated.
Tue, 2008-03-25 13:15
#1
#1 What do you mean by
#1 What do you mean by normal text?
You can try:
a {
text-decoration: none;
}
#2 Apply this to your css:
table {
text-align: center;
}
Without seeing your actual code I can't be more detailed. If you want to copy and paste ALL of your html and css here that would be helpful, also a link if you have one. If not, try that and best of luck.