Connecting Tech Pros Worldwide Forums | Help | Site Map

Help with Netscape problem

JB
Guest
 
Posts: n/a
#1: Jul 20 '05
This page looks fine in IE but in Netscape, is a disaster! Can anyone help
me with the correccode for Netscape, please?

http://www.bestpump.plus.com/test/test.htm

Thanks,

JB



Steve Pugh
Guest
 
Posts: n/a
#2: Jul 20 '05

re: Help with Netscape problem


"JB" <jb@here.com> wrote:
[color=blue]
>This page looks fine in IE but in Netscape, is a disaster! Can anyone help
>me with the correccode for Netscape, please?
>
>http://www.bestpump.plus.com/test/test.htm[/color]

Get rid of the <br>s and add display: block to the style.

But this is a list, so use <ul> and <li>.

Steve

--
"My theories appal you, my heresies outrage you,
I never answer letters and you don't like my tie." - The Doctor

Steve Pugh <steve@pugh.net> <http://steve.pugh.net/>
JB
Guest
 
Posts: n/a
#3: Jul 20 '05

re: Help with Netscape problem


Thanks Steve,

That sorts out the overlapping problem but I'd rather not have the <li>
bullets - any alternatives?

JB

"Steve Pugh" <steve@pugh.net> wrote in message
news:cr78nvc330vqga51jtnd3pvrru3d2e5j2n@4ax.com...[color=blue]
> "JB" <jb@here.com> wrote:
>[color=green]
> >This page looks fine in IE but in Netscape, is a disaster! Can anyone[/color][/color]
help[color=blue][color=green]
> >me with the correccode for Netscape, please?
> >
> >http://www.bestpump.plus.com/test/test.htm[/color]
>
> Get rid of the <br>s and add display: block to the style.
>
> But this is a list, so use <ul> and <li>.
>
> Steve
>
> --
> "My theories appal you, my heresies outrage you,
> I never answer letters and you don't like my tie." - The Doctor
>
> Steve Pugh <steve@pugh.net> <http://steve.pugh.net/>[/color]


Barry Pearson
Guest
 
Posts: n/a
#4: Jul 20 '05

re: Help with Netscape problem


JB wrote:[color=blue]
> Thanks Steve,
>
> That sorts out the overlapping problem but I'd rather not have the
> <li> bullets - any alternatives?[/color]
[snip]

I think:

li { list-style-type: none; }

--
Barry Pearson
http://www.Barry.Pearson.name/photography/
http://www.BirdsAndAnimals.info/
http://www.ChildSupportAnalysis.co.uk/


JB
Guest
 
Posts: n/a
#5: Jul 20 '05

re: Help with Netscape problem


That removes the bullets but there is still an indent where the bullets
would appear.

JB

"Barry Pearson" <news@childsupportanalysis.co.uk> wrote in message
news:zEVcb.776$4D.608038@newsfep2-win.server.ntli.net...[color=blue]
> JB wrote:[color=green]
> > Thanks Steve,
> >
> > That sorts out the overlapping problem but I'd rather not have the
> > <li> bullets - any alternatives?[/color]
> [snip]
>
> I think:
>
> li { list-style-type: none; }
>
> --
> Barry Pearson
> http://www.Barry.Pearson.name/photography/
> http://www.BirdsAndAnimals.info/
> http://www.ChildSupportAnalysis.co.uk/
>
>[/color]


JB
Guest
 
Posts: n/a
#6: Jul 20 '05

re: Help with Netscape problem


Solved the problem!

<ul style="list-style-type: none; position:relative; left:-38px;}">

Thanks for the help guys!

JB

"JB" <jb@here.com> wrote in message
news:3f7439df$0$126$7b0f0fd3@mistral.news.newnet.c o.uk...[color=blue]
> That removes the bullets but there is still an indent where the bullets
> would appear.
>
> JB
>
> "Barry Pearson" <news@childsupportanalysis.co.uk> wrote in message
> news:zEVcb.776$4D.608038@newsfep2-win.server.ntli.net...[color=green]
> > JB wrote:[color=darkred]
> > > Thanks Steve,
> > >
> > > That sorts out the overlapping problem but I'd rather not have the
> > > <li> bullets - any alternatives?[/color]
> > [snip]
> >
> > I think:
> >
> > li { list-style-type: none; }
> >
> > --
> > Barry Pearson
> > http://www.Barry.Pearson.name/photography/
> > http://www.BirdsAndAnimals.info/
> > http://www.ChildSupportAnalysis.co.uk/
> >
> >[/color]
>
>[/color]


Brian
Guest
 
Posts: n/a
#7: Jul 20 '05

re: Help with Netscape problem


Please stop top-posting.

JB wrote:[color=blue]
>[color=green]
>> That removes the bullets but there is still an indent
>> where the bullets would appear.[/color]
>
> Solved the problem!
>
> <ul style="list-style-type: none; position:relative; left:-38px;}">[/color]

I think you've got some problems left. Try changing the font size and
see what happens. If it were me, I'd go with something more robust.

ul {
list-style-type: none;
margin-left: 0 ;
padding-left: 0 ;
}

--
Brian
follow the directions in my address to email me

Johannes Koch
Guest
 
Posts: n/a
#8: Jul 20 '05

re: Help with Netscape problem


JB wrote:[color=blue]
> Solved the problem!
>
> <ul style="list-style-type: none; position:relative; left:-38px;}">[/color]

Argh, the 'indent' usually is rendered with a default margin-left or
padding-left for ul or li.
ul, li
{
padding-left: 0;
margin-left: 0;
}
would be much better.
--
Johannes Koch
In te domine speravi; non confundar in aeternum.
(Te Deum, 4th cent.)

JB
Guest
 
Posts: n/a
#9: Jul 20 '05

re: Help with Netscape problem


Even better! Thanks a million!

JB

"Brian" <usenet1@mangymutt.com.invalid-remove-this-part> wrote in message
news:C4Ycb.342605$2x.104519@rwcrnsc52.ops.asp.att. net...[color=blue]
> Please stop top-posting.
>
> JB wrote:[color=green]
> >[color=darkred]
> >> That removes the bullets but there is still an indent
> >> where the bullets would appear.[/color]
> >
> > Solved the problem!
> >
> > <ul style="list-style-type: none; position:relative; left:-38px;}">[/color]
>
> I think you've got some problems left. Try changing the font size and
> see what happens. If it were me, I'd go with something more robust.
>
> ul {
> list-style-type: none;
> margin-left: 0 ;
> padding-left: 0 ;
> }
>
> --
> Brian
> follow the directions in my address to email me
>[/color]


Brian
Guest
 
Posts: n/a
#10: Jul 20 '05

re: Help with Netscape problem


JB wrote:[color=blue]
> Brian wrote:[color=green]
>> If it were me, I'd go with
>>
>>ul {
>>list-style-type: none;
>>margin-left: 0 ;
>>padding-left: 0 ;
>>}[/color]
>
> Even better! Thanks a million![/color]

You're welcome. Now please stop top-posting. Please.

--
Brian
follow the directions in my address to email me

Closed Thread