# Overrule font-size

**URL:** https://forum.kirupa.com/t/overrule-font-size/150986
**Category:** web dev
**Created:** [June 12, 2005, 12:08pm UTC](https://forum.kirupa.com/t/overrule-font-size/150986 "2005-06-12T12:08:22Z")
**Posts on this page:** 1
**Page:** 1

<div class="post-metadata">

### Author: ![3pinter](https://avatars.discourse-cdn.com/v4/letter/3/9de053/32.png) [@3pinter](https://forum.kirupa.com/u/3pinter)
#### Post date: [June 12, 2005, 12:08pm UTC](https://forum.kirupa.com/t/overrule-font-size/150986/1 "2005-06-12T12:08:22Z")

</div>

Okay I want a little font-size adjustment… from 12px to 10px… but it doesn’t work … any thoughts?

```auto

<div id="frame">
 <div id="contentheader">
  <div id="floatright">
   <ul>
	<li><a href="login.php">Login</a></li>
	<li><a href="logout.php">Logout</a></li>
   </ul>
  </div><br clear="right">
  <ul>
   <li><a href="autos.php">Auto's</a></li>
   <li><a href="oldtimers.php">Oldtimers</a></li>
   <li id="active">Audio</li>
   <li><a href="techniek.php">Techniek</a></li>
   <li><a href="contact.php">Contact</a></li>
  </ul>
   </div>
</div>

```

[css]  
#frame {  
width:750px;  
margin-right:auto;  
margin-left:auto;  
margin-top:0px;  
padding:0px;  
text-align:left;  
}  
#contentcenter {  
width:750px;  
margin:0px;  
padding:0px;  
float:left;  
background:#000;  
color:#fff;  
text-align:justify;  
}  
#floatright  
{  
padding: 110px 40px 0px 0px;  
margin: 0px;  
text-align:right;  
float:right;  
line-height:50%;  
font-size:10px;  
}  
#floatright a {  
text-decoration:none;  
color:#000;  
}

#contentheader ul {  
margin: 0;  
padding: 0px 0 10px 20px;  
list-style-type: none;  
text-align: left;  
}  
#contentheader li { display: inline; }  
#contentheader a {  
font-family:Georgia, “Times New Roman”, Times, serif;  
font-size:12px;  
text-decoration: none;  
padding: .2em 1em;  
color: #000;  
border-right:1px solid #fff;  
}  
#contentheader a:hover{color:#00CCFF;}  
[/css]

But my #floatright doesn’t work … at least the font-size 10px isn’t …

HELP HELP … any thoughts?

3Pinter  
😏
