Exit
  • Global community
    • Language:
      • Deutsch
      • English
      • Español
      • Français
      • Português
  • 日本語コミュニティ
  • 한국 커뮤니티
0

Borders show

New Here ,
Jan 03, 2009 Jan 03, 2009
I want a page border for the whole page but NOT for the individual columns and rows. The way I've done it looks fine on a PC using IE (which client uses) but using Firefox on a PC using anything on a Mac all the borders show. To clarify I want JUST the outside border to show.

I'm using Dreamweaver MX 2004. Here's the link to the beginning set-up: http://www.saraohara.com/jcb/pages/home.htm

THANKS!
Sara
TOPICS
Server side applications
303
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 04, 2009 Jan 04, 2009
Looking at your code, I see -

.style3 { color: #FFCC66;
font-family: "avante garde regular";

Please be aware that avante garde regular is not a websafe font. Further,
it's always a good practice to specify a font family rather than a single
font. These are your choices -

http://www.ampsoft.net/webdesign-l/WindowsMacFonts.html

Next, you have this -

<table width="100" border="2" align="center" cellpadding="0" cellspacing="0"
bordercolor="#bda448">

Be aware that the bordercolor attribute is invalid HTML (IE proprietary),
and should not be used. If you need to have a colored border on your table,
use CSS, like this -

table.special {
border:2px solid #bda448;
border-collapse:collapse;
width:760px;
margin:0 auto;
}

and then make your table tag like this -

<table width="760" cellpadding="0" cellspacing="0" class="special">

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"sohara" <webforumsuser@macromedia.com> wrote in message
news:gjpbnm$ehn$1@forums.macromedia.com...
>I want a page border for the whole page but NOT for the individual columns
>and
> rows. The way I've done it looks fine on a PC using IE (which client uses)
> but
> using Firefox on a PC using anything on a Mac all the borders show. To
> clarify
> I want JUST the outside border to show.
>
> I'm using Dreamweaver MX 2004. Here's the link to the beginning set-up:
> http://www.saraohara.com/jcb/pages/home.htm
>
> THANKS!
> Sara
>

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
New Here ,
Jan 04, 2009 Jan 04, 2009
You are a genius! http://www.saraohara.com/jcb/pages/home.htm

I promise to learn CSS and stop bugging you all!
THANKS ACE!
Sara
Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines
LEGEND ,
Jan 04, 2009 Jan 04, 2009
LATEST
Get busy!

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
==================


"sohara" <webforumsuser@macromedia.com> wrote in message
news:gjr20e$n9q$1@forums.macromedia.com...
> You are a genius! http://www.saraohara.com/jcb/pages/home.htm
>
> I promise to learn CSS and stop bugging you all!
> THANKS ACE!
> Sara

Translate
Report
Community guidelines
Be kind and respectful, give credit to the original source of content, and search for duplicates before posting. Learn more
community guidelines