I need help with CSS and I am willing to pay

Discussion in 'CSS' started by speedyj, Feb 25, 2009.

  1. #1
    I just finished a web site for a client of mine and I did it with CSS.

    I am going completely F....king Insane with the floats. part of the site looks great in IE and not in Firefox and vice versa

    I need HELP.

    I can give you access to my PC with a programm called Team Viewer.
    I am willing to pay anybody that can fix this with pay pal.

    Let me know how much I wanna get done with this project
    Here is the web site.
    Problem with header in the about , services and contact page + problem with images overlapping in home page


    http://bandgmaintenance.com/
     
    speedyj, Feb 25, 2009 IP
  2. MaxZ

    MaxZ Peon

    Messages:
    38
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #2
    I didn't tested the site in IE, I really don't want such things on my PC, but I've some things that might help you, the lovely .... IE Conditionals

    <!--[if IE]>
    #yourFloatsHere
    <![endif]-->

    If that can't help, PM I will brainstorm a little bit.
     
    MaxZ, Feb 25, 2009 IP
  3. Colbyt

    Colbyt Notable Member

    Messages:
    3,224
    Likes Received:
    185
    Best Answers:
    0
    Trophy Points:
    210
    #3
    The home page looks the same in IE7+ and FF 3+. Not right in either.
     
    Colbyt, Feb 25, 2009 IP
  4. blktallos

    blktallos Active Member

    Messages:
    314
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    60
    #4
    You need to clear your floats.
     
    blktallos, Feb 25, 2009 IP
  5. Spawny

    Spawny Well-Known Member

    Messages:
    252
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    110
    #5
    try putting <br style="clear:both;" /> before your floats
     
    Spawny, Feb 25, 2009 IP
  6. blktallos

    blktallos Active Member

    Messages:
    314
    Likes Received:
    3
    Best Answers:
    0
    Trophy Points:
    60
    #6
    clearer {
    	clear:both;
    }
    
    <div id="clearer"></div>
    Code (markup):
     
    blktallos, Feb 25, 2009 IP
  7. jauhari

    jauhari Peon

    Messages:
    55
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Or try add this code on your parent float div
    
    #parent {
    overflow: auto;
    }
    
    Code (markup):
     
    jauhari, Feb 26, 2009 IP