What's new

Welcome to the forum 👋, Visitor

To access the forum content and all our services, you must register or log in to the forum. Becoming a member of the forum is completely free.

New to webdesign help repeating down a page :/

glyph1701

Junior Member
Joined
May 15, 2013
Messages
2
Reaction score
0
HTML Coins
0
I have done graphic design for years and am trying to learn the HTML/CSS side of web design now...

This will probably be a simple I'm being dumb question but here's what I have. I am trying to get "leftnav" to repeat down the left side of the page.

Here is my code I have so far.

=========HTML==========

<body>

<!--This section below works fine-->
<div id="header">
<div class="top-right">
</div>
<div class="top-left">
</div>
<div class="center-div">
</div>
</div>

<div id="leftnav">
<div class="left-nav">
</div>
</div>

<!--This is the section I cannot get to work properly-->
<div id="leftfill">
<div class="left-fill">
</div>
</div>

</body>

=======CSS========

.top-left {
background:url("Images/Site Top Left.png");
background-repeat:no-repeat;
height:224px;
width:313px;
float:left;
z-index:2;
}

.top-right {
background:url("Images/Site Top Right.png");
background-repeat:no-repeat;
height:221px;
width:312px;
float:right;
z-index:2;
}

.center-div {
width:100%;
height:162px;
background:url("Images/Site Top Center.png");
background-repeat:repeat-x;
padding:0;
z-index:1;
}

#header {
position:fixed;
top:0px;
left:0px;
right:0px;
min-width:960px;
}

.left-nav {
background:url("Images/Site Left Nav.png");
backround-repeat:no-repeat;
height:394px;
width:208px;
float:left;
z-index:2;
}

#leftnav {
position:fixed;
top:224px;
left:0px
right:0px;
min-height:394px;
}

.left-fill {
width:150px%;
height:100%;
background:url("Images/Site Left Fill.png");
background-repeat:repeat-y;
padding:0;
float:left;
z-index:1;
}

#leftfill {
position:fixed;
top:0px;
left:0px
right:0px;
min-height:960px;
}

Here is an example pic of what I am trying to do:



I have a graphic for the left nav but the repeat is suuposed to go past that and repeat to the bottom of the page if it does not fill it out. Right now I am just trying to get it there and to repeat to the bottom would like to eventually start it at the bottom of the graphic.

Any help would be greatly appreciated :).
 

Theme customization system

You can customize some areas of the forum theme from this menu.

  • Wide/Narrow view

    You can control a structure that you can use to use your theme wide or narrow.

    Grid view forum list

    You can control the layout of the forum list in a grid or ordinary listing style structure.

    Picture grid mode

    You can control the structure where you can open/close images in the grid forum list.

    Close sidebar

    You can get rid of the crowded view in the forum by closing the sidebar.

    Fixed sidebar

    You can make it more useful and easier to access by pinning the sidebar.

    Close radius

    You can use the radius at the corners of the blocks according to your taste by closing/opening it.

  • Choose the color combination that reflects your taste
    Background images
    Color gradient backgrounds
Back