This could be one of those problems where the question is more complicated than the answer but here goes.
I have the following page structure which allows me to control content in columns.
I cannot format the div class 'message'.
The text just remains black and there is no border.
Up to this point, things have gone well.
Keith
I have the following page structure which allows me to control content in columns.
Code:
<body class='spilbod'>
<div class="spilpag">
<div class='menucolumn'>
<div class='menu'>
</div>
<div class='undermenu'>
</div>
<div class='undermenu'>
</div>
<div class='undermenu'>
</div>
<div class='undermenu'>
</div>
</div>
<div class='body'>
<div class='message'>
[RED]Cannot get this div to format[/RED]
</div>
<div class='fullcolumn'>
</div>
<div class='column'>
<div class='item'>
</div>
<div class='item'>
</div>
<div class='item'>
</div>
</div>
<div class='column'>
<div class='item'>
</div>
<div class='item'>
</div>
<div class='item'>
</div>
</div>
<div class='info'>
</div>
</div>
</div>
<div class="lynx">
</div>
</body>
</html>
Code:
.message{
font-size:12px;
font-family: Verdana, sans-serif;
text-decoration: none;
font-weight:bold;
font-style:normal;
color: #FF0000;
border-width: 3px;
border-style: solid;
border-color: #FF0000;
background-color: #DDDDCC;
}
Up to this point, things have gone well.
Keith