I am new to CSS and treading very carefully.
The following snippet is taken from within my style sheet.
I have placed 5 of these text links, across a page within individual cells of a table. How do I centre the text within each cell of the table? Using the usual
Keith
The following snippet is taken from within my style sheet.
Code:
#elButton a {
color: #ffffff;
font-size:12px;
font-family:verdana;
font-weight:bold;
text-decoration: none;
border:0px outset white;
display: block;
width: 150px;
padding: 3px 5px;
margin: 1px;
}
#elButton a:hover {
color:#003366;
padding-left:4px;
font-weight:bold;
border:0px inset black;
text-decoration: none;
}
Keith