Format of LinkButton..?

  • Thread starter Thread starter Onur Bozkurt
  • Start date Start date
O

Onur Bozkurt

How can I make my linkbuttons color always blue even if they are visited or
not, and make them underline in hover mode free from browser settings..
 
Hi Onur

Although there are a few ways of doing this, putting the following <style>
block in the HTML code is probably the easiest:

<style>
a:visited { color: blue; }
a:hover { text-decoration: underline; }
a { text-decoration: none; }
</style>

Peter
 
Back
Top