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

create a shadow down side of page

New Here ,
Sep 01, 2006 Sep 01, 2006
Hi there

would somebody please help me, I've been following the adobe tech notes on how to use background images and css . I've created a wrapper.jpg as the wrapper shadow image, so I now have a page with a shadow going down the left and right side of the page. this is the tect note I'm following http://www.adobe.com/devnet/dreamweaver/articles/css_bgimages_pt3.html )

I've done what the tech note says, but what I cant find out is how to make the shadow go to the botton of the page. like when you put a table at Height 100% so it stay to the bottom of the page! I've tried changing the values in the css to 100% but this make the image(wrapper.gif) to a smaller size completely.

does anyone know what I'm to do I'm sure its something really simple! heres an example of the shadows down the sides of the page http://www.ntlworld.com/

cheers for your time
TOPICS
Server side applications
509
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 ,
Sep 01, 2006 Sep 01, 2006
You would make that image the background image of the page if you want it to
go all the way to the bottom..

--
Murray --- ICQ 71997575
Adobe Community Expert
(If you *MUST* email me, don't LAUGH when you do so!)
==================
http://www.dreamweavermx-templates.com - Template Triage!
http://www.projectseven.com/go - DW FAQs, Tutorials & Resources
http://www.dwfaq.com - DW FAQs, Tutorials & Resources
http://www.macromedia.com/support/search/ - Macromedia (MM) Technotes
==================


"dizzy nuts" <webforumsuser@macromedia.com> wrote in message
news:ed9c0s$rc6$1@forums.macromedia.com...
> Hi there
>
> would somebody please help me, I've been following the adobe tech notes on
> how
> to use background images and css . I've created a wrapper.jpg as the
> wrapper
> shadow image, so I now have a page with a shadow going down the left and
> right
> side of the page. this is the tect note I'm following
> http://www.adobe.com/devnet/dreamweaver/articles/css_bgimages_pt3.html )
>
> I've done what the tech note says, but what I cant find out is how to make
> the
> shadow go to the botton of the page. like when you put a table at Height
> 100%
> so it stay to the bottom of the page! I've tried changing the values in
> the
> css to 100% but this make the image(wrapper.gif) to a smaller size
> completely.
>
> does anyone know what I'm to do I'm sure its something really simple!
> heres an
> example of the shadows down the sides of the page http://www.ntlworld.com/
>
> cheers for your time
>


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
Guest
Sep 04, 2006 Sep 04, 2006
a real easy way to make a shadow (though maybe not as slick as with an image) is just to put a border on the right and botton of the page div.
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 ,
Sep 04, 2006 Sep 04, 2006
how do you mean?
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
Guest
Sep 04, 2006 Sep 04, 2006
like this:
.shadow{
border-left:#CCCCCC 1px solid;
border-top:#CCCCCC 1px solid;
border-right:#333333 3px solid;
border-bottom:#333333 3px solid;
}

you can tweak the width and color so it matches the site.
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 ,
Sep 05, 2006 Sep 05, 2006
LATEST
cheers
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