Firefox CSS Question

Sunday, 16 October 2005, 9:00

***Update: Thanks to Basil, I moved some code around and now it’s working. Thank you darling!

*** bumping up ***

For those that use Firefox and know CSS for Wordpress, I have a quesiton I can’t find the answer to.

My storytitle CSS has

border-bottom: solid
border-bottom: 1px;

but the border is not showing up in Firefox.

Any ideas why?

Thanks in advance!

[del.icio.us] [Digg] [Facebook] [Google] [LinkedIn] [MySpace] [StumbleUpon] [Twitter] [Yahoo!] [Email]
Category : Blogging | Tags :

One Comment for “Firefox CSS Question”

  1. 1basil

    Have you tried:

    border-bottom : 1px solid #000000;

    replacing #000000 with whatever color you want?

    I do see a missing ‘;’ after the first line. Not sure, but I think Firefox likes the line terminater.

    It (and IE) both accept combining them on one line like my sample shows.

    Just a thought.