SitePoint Sponsor

User Tag List

Results 1 to 4 of 4

Thread: CSS issue? text areas not aligned in FF

  1. #1
    SitePoint Zealot walterkilis's Avatar
    Join Date
    Dec 2006
    Location
    Huntington Beach
    Posts
    128
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    CSS issue? text areas not aligned in FF

    I am wondering if someone could help me with this issue I am having.

    I have two text areas below the banner. One is floating to the right. For some reason the text areas align together in IE, but not FF. One side is higher than the other when this is displayed in firefox. I can't see anything wrong with my CSS, can anyone give me a second opinion?

    http://www.artistaffair.net/agency/

  2. #2
    padawan silver trophy
    SitePoint Award Recipient markbrown4's Avatar
    Join Date
    Jul 2006
    Location
    Victoria, Australia
    Posts
    4,014
    Mentioned
    25 Post(s)
    Tagged
    0 Thread(s)
    Hi,

    The right column is getting different CSS, It's the margin at the top that is pushing the right column down 15px.

    Code:
    #sidebar-a {
    	float: right;
    	width: 340px;
    	background: black;
    	line-height: 14px;
    	margin: auto;
    	margin-right: 28px;
    	margin-bottom: 15px;
    	margin-top: 0;
    }

  3. #3
    padawan silver trophy
    SitePoint Award Recipient markbrown4's Avatar
    Join Date
    Jul 2006
    Location
    Victoria, Australia
    Posts
    4,014
    Mentioned
    25 Post(s)
    Tagged
    0 Thread(s)
    Now you can fix my netscape issues

  4. #4
    SitePoint Zealot walterkilis's Avatar
    Join Date
    Dec 2006
    Location
    Huntington Beach
    Posts
    128
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Oh wonderful!! This fixes it. Thanks so much!

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
  •