desie310
12-27-2009, 04:45 PM
The width of each td in the navbar is calculated based on the number of letters it contains. The problem is that it does so seemingly exponentially, so that "HomeForumsWebrary" would take up 456px of width while "search" only takes up 135px.
I'm not sure how to fix this. I just want the spacing to look even.
*edit - I think I got it. I put this in the headinclude:
<if condition="$show['member']">
<style type="text/css">
.nav1 { width:12.5%; }
</style>
<else />
<style type="text/css">
.nav1 { width:20%; }
</style>
</if>
I'm not sure how to fix this. I just want the spacing to look even.
*edit - I think I got it. I put this in the headinclude:
<if condition="$show['member']">
<style type="text/css">
.nav1 { width:12.5%; }
</style>
<else />
<style type="text/css">
.nav1 { width:20%; }
</style>
</if>