Results 1 to 2 of 2

Thread: CSS Postitioning for Cross Browser

  1. #1
    Join Date
    Apr 2008
    Posts
    3
    Thanks
    0
    Thanked 1 Time in 1 Post

    Default CSS Postitioning for Cross Browser

    Hi All,

    this is my first thread, so bear with me... I have an admin panel setup. It uses CSS for the postioning of the bottom bar. You can check it out here

    Now if you viewed that in Mozillia, it looks great! But try IE, not so great... You can check out the "View Page Source" to see what I have under the lid.

    Just wondering if there was anyway to still use CSS for the positioning, but making it browser friendly.

    For the bottom bar I used this in my CSS:

    Code:
    td.footer
    {
    	background-image: url("templates/default/images/bottom.png");
    	font-family: arial;
    	font-size: 10pt;
    	text-align: center;
    	position: absolute;
    	bottom: 0px;
    	left: 0px;
    	border-top-width: thin;
    	border-top-style: solid;
    	border-top-color: #FFFFFF;
    	color: #FFFFFF;
    	vertical-align: middle;
    }
    to be exact. The image is in a td, which is in a table with 100% width.

    Any help would be appreciated
    Thanks...

  2. #2
    Join Date
    Jul 2006
    Location
    just north of Boston, MA
    Posts
    1,806
    Thanks
    13
    Thanked 72 Times in 72 Posts

    Default

    Code:
    td.footer {
        width: 100%;
        ...
    }

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •