I've asked the site owner if I can submitt a link. I will if she gives permission. However I did try this and it seems to work.

.sidemenu {
font-size: 13px;
font-weight: bold;
width: 100%;
display:block;
margin-top:0;
padding-top: 0;
margin-left: 0;
line-height:20px;
}
.sidemenu br {line-height: 3px;margin-bottom: 2px;margin-top:2px;display:block; }



[EMAIL PROTECTED] wrote:
having a go trying to help a friend figure out why, in xhtml strict 1.0 the <br /> that are styled in the css style sheet as follows: */.sidemenu br {line-height: 3px;/* */./*
*//* [trimmed]
Sharron
A clickable link to this page would help. Otherwise it is a guessing game.
With a simple list /one/ alternative is to assign line-height to the ul. No <br /> needed. And, either way, using px for line-height is not a good idea. Try a raw number.
ul {
 line-height: 1.75;
}
<ul>
<li><a href="#">stuff</a></li>
<li><a href="#">more stuff</a></li>
<li><a href="#">even more stuff</a></li>
</ul>

If the goal is to have a one of /unique/ space, I suppose you could use:
br.lead {line-height: 3.5;}
<br class="lead" />
Best,
~dL

--
http://chelseacreekstudio.com/



*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************




*******************************************************************
List Guidelines: http://webstandardsgroup.org/mail/guidelines.cfm
Unsubscribe: http://webstandardsgroup.org/join/unsubscribe.cfm
Help: [EMAIL PROTECTED]
*******************************************************************

Reply via email to