Posted by dorayme on 01/29/07 04:41
In article <1ll9ggviakfui.1a2q4eipiwu1k.dlg@40tude.net>,
al jones <alfredmjones@shotmail.com> wrote:
> >
> > And now, I must stop.
>
> Since I've tried to implement some of your suggestions and am going bonkers
> with the same (original) problem, I'm 'bumping' this in the hopes that
> someone will comment on either / both messages ...
>
Looking better al... but your margin is trouble on
div#leftbit {
margin: -12px;
border-right: solid 5px #ccc;
}
I advise you to be rid of this negative margin, look at the ugly
right border poking out at top. At the very least do not have it
on the top margin. You could have
margin: 0 0 0 -12px;
I suppose, which is nicer. But why not margin:0; and change your
ul {
...
padding-left: 1em;
to
ul {
...
padding-left: .5em;
--
dorayme
[Back to original message]
|