I have followed several different CSS examples to no avail. All of the sources I've seen have indicated that the display: block property should do what I want easily. But Flare seems to be ignoring it. Am I missing something fundamental here?
Here is my CSS:
Code: Select all
ul.links
{
list-style-type: none;
padding-left: 0;
margin-left: 6px;
margin-top: 0px;
padding: 0px;
}
ul.links li
{
font-size: 14pt;
font-weight: bold;
color: #003399;
list-style: none;
margin-top: 12px;
margin-bottom: 12px;
}
ul.links a
{
display: block;
font-weight: bold;
text-decoration: none;
background: #005ABC;
color: #FFF;
border: 4px solid;
border-bottom-color: #003571;
border-left-color: #004ea3;
border-right-color: #003e82;
border-top-color: #004da0;
padding: 5px;
}Following is a screen shot of what I'm getting in Flare. I currently have the links in a two-column table. I have also tried them outside of a table with the same results. (Note that the colors/alignment/padding are all still very much representative of a work in progress. But I just want all buttons to be the same size and know I can get that working before proceeding.)