Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums CSS Page Layout to float?

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #28462
    loukin
    Member

    Can someone help me I would like to make my page body look like it’s floating like http://www.gamefaqs.com/console/xbox360/

    #72621
    loukin
    Member

    Yes, that was exactly what I was asking about. Thank you for your help.

    #72672
    sliver37
    Member

    Just as Virtual said, they use images to get the shadows, if you want to do it without images. The easiest way is by using the CSS3 box shadows.

    Code:
    .box_shadow {
    -moz-box-shadow: 0px 0px 15px #000; /* FF3.5+ */
    -webkit-box-shadow: 0px 0px 15px #000; /* Saf3.0+, Chrome */
    box-shadow: 0px 0px 15px #000; /* Opera 10.5, IE 9.0 */
    filter: progid:DXImageTransform.Microsoft.dropshadow(OffX=0px, OffY=0px, Color=’#000000′); /* IE6,IE7 */
    -ms-filter: “progid:DXImageTransform.Microsoft.dropshadow(OffX=0px, OffY=0px, Color=’#000000′)”; /* IE8 */
    }

    ^ this code would add something similar to the site you linked.

    An awesome site for changing those settings automatically cross browser is http://css3please.com/.

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘CSS’ is closed to new topics and replies.