Discover Habbo's history
Treat yourself with a Secret Santa gift.... of a random Wiki page for you to start exploring Habbo's history!
Happy holidays!
Celebrate with us at Habbox on the hotel, on our Forum and right here!
Join Habbox!
One of us! One of us! Click here to see the roles you could take as part of the Habbox community!


Results 1 to 6 of 6

Thread: Urgent help!

  1. #1
    Join Date
    Oct 2008
    Location
    Lincolnshire
    Posts
    1,206
    Tokens
    0

    Latest Awards:

    Default Urgent help!

    Basicly I have this problem with my maintenance page, in Mozilla Firefox its great and I haven't checked any other browsers but in Internet Explorer it dosen't work. Spoiler for images. How can I solve this?

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
    <title>Habben &gt;&gt; Coming Soon!</title>
    <style type="text/css"><!--
    body {
    	background-image: url(images/bg.png);
    	margin-left: 0px;
    	margin-top: 0px;
    	margin-right: 0px;
    }
    --></style>
    <link href="styles/layout.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="strip_top">&nbsp;</div>
    <div class="banner"></div>
    <div class="menu_bar"></div>
    <div class="content_top"></div>
    <div class="content_mid" align="center"><strong>Wheres Habben?</strong></div>
    <p class="content_mid" align="center">&nbsp;</p>
    <p class="content_mid" align="center">Habben is a new fansite for Habbo UK, owned by Lewis-Moody! It may not seem it at the</p>
    <p class="content_mid" align="center"> moment but we have alot planned! We do not yet have a set release date so keep checking </p>
    <p class="content_mid" align="center">back, we will have one very soon!</p>
    <p class="content_mid" align="center"><strong>Current Job Applications Open:</strong></p>
    <p class="content_mid" align="center"><strong>&nbsp;</strong></p>
    <p class="content_mid" align="center"><strong><em>None!</em>&nbsp;</strong> </p>
    <p class="content_mid" align="center">&nbsp;</p>
    <p class="content_mid" align="center">&nbsp;</p>
    <p class="content_mid" align="center">&nbsp;</p>
    <p class="content_mid" align="center"></p>
    <p class="content_mid" align="center"></p>
    <p class="content_mid" align="center"><img alt="" title="" src="http://uploadpicz.com/images/M2J2DJM.png" /><br />
    <br />&nbsp;</p>
    <div class="content_bottom"></div><br />
    </body>
    </html>


    www.habben.co.uk

    +rep for all help!

  2. #2
    Join Date
    Nov 2005
    Posts
    4,486
    Tokens
    921

    Latest Awards:

    Default

    Don't put each line in a <p>, keep it all in one and use <br /> for a new line.
    Regards,
    "RETIRED" FROM HABBO(X)

    :¬:

    TOMSPIT / COWLY05


  3. #3
    Join Date
    Oct 2005
    Location
    Corby
    Posts
    5,512
    Tokens
    2,675
    Habbo
    cabbage (origins)

    Latest Awards:

    Default

    try this bud

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
    <title>Habben &gt;&gt; Coming Soon!</title>
    <style type="text/css"><!--
    body {
        background-image: url(images/bg.png);
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
    }
    --></style>
    <link href="styles/layout.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="strip_top">&nbsp;</div>
    <div class="banner"></div>
    <div class="menu_bar"></div>
    <div class="content_top"></div>
    <div class="content_mid" align="center"><strong>Wheres Habben?</strong></div>
    <br />
    <center>
    Habben is a new fansite for Habbo UK, owned by Lewis-Moody! It may not seem it at the<br />
    moment but we have alot planned! We do not yet have a set release date so keep checking<br />
    back, we will have one very soon!<br />
    <strong>Current Job Applications Open:</strong><br />
    <strong>&nbsp;</strong><br />
    <strong><em>None!</em>&nbsp;</strong><br />
    <br />
    <br />
    <br />
    <br />
    <br />
    </center>
    <p class="content_mid" align="center"><img alt="" title="" src="http://uploadpicz.com/images/M2J2DJM.png" /><br />
    <br />
    <div class="content_bottom"></div><br />
    </body>
    </html>
    no

  4. #4
    Join Date
    Jan 2008
    Posts
    3,711
    Tokens
    100

    Latest Awards:

    Default

    Also, in the body {, don't write margin-left: 0px; - margin-right: 0px; etc.
    Simply just write margin: 0px;

  5. #5
    Join Date
    Sep 2008
    Posts
    718
    Tokens
    0

    Default

    p {
    margin: 0;
    padding: 0;
    }
    +.net - omg it's coming o_o

  6. #6
    Join Date
    Oct 2008
    Location
    Lincolnshire
    Posts
    1,206
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by MadGuitarist View Post
    try this bud

    Code:
    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>
    <meta http-equiv="Content-Type" content="text/html; charset=us-ascii" />
    <title>Habben &gt;&gt; Coming Soon!</title>
    <style type="text/css"><!--
    body {
        background-image: url(images/bg.png);
        margin-left: 0px;
        margin-top: 0px;
        margin-right: 0px;
    }
    --></style>
    <link href="styles/layout.css" rel="stylesheet" type="text/css" />
    </head>
    <body>
    <div class="strip_top">&nbsp;</div>
    <div class="banner"></div>
    <div class="menu_bar"></div>
    <div class="content_top"></div>
    <div class="content_mid" align="center"><strong>Wheres Habben?</strong></div>
    <br />
    <center>
    Habben is a new fansite for Habbo UK, owned by Lewis-Moody! It may not seem it at the<br />
    moment but we have alot planned! We do not yet have a set release date so keep checking<br />
    back, we will have one very soon!<br />
    <strong>Current Job Applications Open:</strong><br />
    <strong>&nbsp;</strong><br />
    <strong><em>None!</em>&nbsp;</strong><br />
    <br />
    <br />
    <br />
    <br />
    <br />
    </center>
    <p class="content_mid" align="center"><img alt="" title="" src="http://uploadpicz.com/images/M2J2DJM.png" /><br />
    <br />
    <div class="content_bottom"></div><br />
    </body>
    </html>
    Thats just the text code, could you possibly put that into the code I posted???

Posting Permissions

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