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!


Page 3 of 3 FirstFirst 123
Results 21 to 30 of 30
  1. #21
    Join Date
    Jan 2009
    Location
    LDN & The South
    Posts
    147
    Tokens
    0

    Default

    I use a combination of Photoshop CS3, Dreamweaver CS3, Frontpage, notepad or textedit (depending on what operating system i'm currantly on.

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

    Latest Awards:

    Default

    I have a bit of an annoying problem with my layout..
    www.habben.co.uk/coding/2 can somebody help me fix it?

  3. #23
    Join Date
    Nov 2008
    Posts
    217
    Tokens
    1,822
    Habbo
    eLv

    Latest Awards:

    Default

    Why is your coding like this:

    <div id="left">
    </div>
    <div id="right">
    </div>
    <div id="center">
    </div>

    It'll be easier and neater if you put it:

    <div id="left">
    </div>
    <div id="center">
    </div>
    <div id="right">
    </div>

    And use css like:

    #left, #right
    {
    width: 100px;
    float: left;
    }

    #center
    {
    width: 400px;
    float: left;
    }
    Last edited by eLv; 19-06-2009 at 11:30 AM.






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

    Latest Awards:

    Default

    Quote Originally Posted by xScoldx View Post
    Why is your coding like this:

    <div id="left">
    </div>
    <div id="right">
    </div>
    <div id="center">
    </div>

    It'll be easier and neater if you put it:

    <div id="left">
    </div>
    <div id="center">
    </div>
    <div id="right">
    </div>

    And use css like:

    #left, #right
    {
    width: 100px;
    float: left;
    }

    #center
    {
    width: 400px;
    float: left;
    }
    What difference wouldthey make?

  5. #25
    Join Date
    Nov 2008
    Posts
    217
    Tokens
    1,822
    Habbo
    eLv

    Latest Awards:

    Default

    Big differences, my way will work out neater and easier. How would you style the layout if <div id="center"></div> is placed at the last? #left { floateft }; #right { float:right };?






  6. #26
    Join Date
    May 2007
    Posts
    10,481
    Tokens
    3,140

    Latest Awards:

    Default

    Nope, it's better to do the left and right side first, then the middle.... you just have to centre the middle div....
    Chippiewill.


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

    Latest Awards:

    Default

    Quote Originally Posted by 00chips View Post
    Nope, it's better to do the left and right side first, then the middle....
    Thats what I got told..

  8. #28
    Join Date
    Apr 2009
    Location
    United Kingdom
    Posts
    1,111
    Tokens
    100

    Latest Awards:

    Default

    Quote Originally Posted by grnr View Post
    Don't use phpDesigner for HTML.
    Yeh I agree. When I was learning HTML I stuck to Dreamweaver. However, once accomplished in HTML, phpDesigner is fine... Well only if you're doing PHP with HTML haha.

  9. #29
    Join Date
    Dec 2006
    Posts
    627
    Tokens
    0

    Default

    No, Php designer has it's own section for html if I'm not mistaken, if you want to use a program though I would advise Pspad I have been using it for the last couple of months and it is fantastic, don't use dreamweaver I think it's the hardest way to learn.

    I will try and help you a bit, read below:

    First of all create:

    Site Folder/

    In side the folder create:

    images/

    index.html
    style.css

    Ok now thats the base for your layout, but what good is it having .html file and .css file if they don't link to each other.

    Ok so for this all you have to do is:

    Code:
    <html>
    <head>
    <!--This piece of code links the style sheet-->
    <LINK REL=StyleSheet HREF="style.css" TYPE="text/css">
    <title> whatever you wish in here</title>
    </head>
    <body>
     
    </body>
    </html>
    Your style sheet is now linked to your html page.

    Right now you want to add stuff inside your body tags such as divs, lets start with the wrapper div.

    Code:
    <html>
    <head>
    <!--This piece of code links the style sheet-->
    <LINK REL=StyleSheet HREF="style.css" TYPE="text/css">
    <title> whatever you wish in here</title>
    </head>
    <body>
     <div id="wrapper"></div>
    </body>
    </html>

    Lets take a look at the css style sheet:

    Code:
    BODY {
    All of the css for the body will go in here such as background colours etc.
     
     
    }
     
    #wrapper {
    All of the css for your wrapper tag will go in here.
     
    }
    As you can see the hash declares the div tag so every div you create in your html you can simply add it too your css with the hash.

    This may help you bud
    Find Meh - Coming Soon

  10. #30
    Join Date
    May 2007
    Posts
    10,481
    Tokens
    3,140

    Latest Awards:

    Default

    I would advise using: http://notepad-plus.sourceforge.net/uk/site.htm

    Highlighter for basically all major coding languages....
    Chippiewill.


Page 3 of 3 FirstFirst 123

Posting Permissions

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