Page 2 of 2 FirstFirst 12
Results 11 to 18 of 18

Thread: Help

  1. #11
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    The new version or the old version?
    The new(-er) one. The way it's presented, the style of the boxes and the banner, it's all the same, lol.

  2. #12
    Join Date
    Feb 2008
    Location
    Plymouth
    Posts
    1,073
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post
    The new(-er) one. The way it's presented, the style of the boxes and the banner, it's all the same, lol.
    Ooo preview? ?

  3. #13
    Join Date
    May 2005
    Location
    San Francisco, CA
    Posts
    7,160
    Tokens
    2,331

    Latest Awards:

    Default

    http://www.habbolake.com/beta_site

    You probably won't agree with me, but the concept of the designs are the same.
    Last edited by Invent; 26-03-2008 at 04:04 PM.

  4. #14
    Join Date
    Feb 2008
    Location
    Plymouth
    Posts
    1,073
    Tokens
    0

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post
    http://www.habbolake.com/beta_site

    You probably won't agree with me, but the concept of the designs are the same.
    Wow thats nice! Yeah I do agree with you as the header on Gangsters is the same as habbolakes and the banner style also the boxes.

    Loving the shoutbox

  5. #15
    Join Date
    Jun 2007
    Posts
    1,757
    Tokens
    105

    Latest Awards:

    Default

    Quote Originally Posted by Invent View Post
    http://www.habbolake.com/beta_site

    You probably won't agree with me, but the concept of the designs are the same.
    oh, kk, edited, any better?

    Get back imma let my gat go,
    got a itchy finger... imma leave a fat hole.
    - Giggs :: Ruthless Freestyle

    I owe rep to - .:Jack120:. HabbDance

  6. #16
    Join Date
    Jul 2005
    Location
    Belgium
    Posts
    2,492
    Tokens
    147

    Latest Awards:

    Default

    When coding the basic div's (the basic form of the layout you're best to use position: relative; in your css),

    ex. : -- link --

    That's the basic build of that design.
    so in your code you would have something like this (@ mid content)

    HTML Code:
    <div id="mid_content">
    
    	<div id="mid_left">
    		<!-- Left side boxes here -->
    	</div>
    
    	<div id="mid_center">
    		<!-- Mid box here -->
    	</div>
    
    	<div id="mid_right">
    		<!-- Right boxes go here -->
    	</div>
    </div>
    and your (basic) css is:

    HTML Code:
    #mid_content{
    	width: 900px; //however big ur design is
    }
    
    #mid_left{
    	position: relative;
    	float: left;
    	width: 250px;
    }
    
    #mid_center{
    	position: relative;
    	float: left;
    	width: 400px;
    	margin-left: 20px; //to have some space between
    }
    
    #mid_right{
    	position: relative;
    	float: right;
    	width: 250px;
    }
    Something like this


    But it's hard to correct someone's coding becouse everyone codes in a different way.





    Regards,
    Olivier Pauwels

  7. #17
    Join Date
    Jun 2007
    Posts
    1,757
    Tokens
    105

    Latest Awards:

    Default

    Quote Originally Posted by [oli] View Post
    When coding the basic div's (the basic form of the layout you're best to use position: relative; in your css),

    ex. : -- link --

    That's the basic build of that design.
    so in your code you would have something like this (@ mid content)

    HTML Code:
    <div id="mid_content">
    
        <div id="mid_left">
            <!-- Left side boxes here -->
        </div>
    
        <div id="mid_center">
            <!-- Mid box here -->
        </div>
    
        <div id="mid_right">
            <!-- Right boxes go here -->
        </div>
    </div>
    and your (basic) css is:

    HTML Code:
    #mid_content{
        width: 900px; //however big ur design is
    }
    
    #mid_left{
        position: relative;
        float: left;
        width: 250px;
    }
    
    #mid_center{
        position: relative;
        float: left;
        width: 400px;
        margin-left: 20px; //to have some space between
    }
    
    #mid_right{
        position: relative;
        float: right;
        width: 250px;
    }
    Something like this


    But it's hard to correct someone's coding becouse everyone codes in a different way.





    Regards,
    Olivier Pauwels
    ty !
    Get back imma let my gat go,
    got a itchy finger... imma leave a fat hole.
    - Giggs :: Ruthless Freestyle

    I owe rep to - .:Jack120:. HabbDance

  8. #18
    Join Date
    Jul 2007
    Posts
    7,783
    Tokens
    89

    Latest Awards:

    Default

    Quote Originally Posted by Gangster View Post
    ty !
    Solved it now? I guess i'm too late.


    Edited by lAscend (Forum Super Moderator): Please don't post pointlessly.
    Last edited by lAscend; 27-03-2008 at 05:35 PM.


Page 2 of 2 FirstFirst 12

Posting Permissions

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