Posts: 44
Name: English Hentai Team
|
I can't put a link a to my site, sorry, but I'll try to explain myself the best I can.
I have a blog at blogger (blogspot).
Somewhere in the code I have a section that I call "right" that, inside, has a section called "sidebar", and two columns, side-by-side, called "rightsub" and "rightsub2". You can see the code below:
Code:
<div id='right'>
<b:section class='sidebar' id='sidebar' preferred='yes'>
<b:widget id='Profile1' locked='false' title='About Me' type='Profile'/>
</b:section>
<div class='subcontainer'>
<b:section class='rightsub' id='rightsub' preferred='yes'>
<b:widget id='Label1' locked='false' title='Labels' type='Label'/>
<b:widget id='BlogArchive1' locked='false' title='Blog Archive' type='BlogArchive'/>
</b:section>
<b:section class='rightsub2' id='rightsub2' preferred='yes'>
<b:widget id='Image1' locked='false' title='ghhghg' type='Image'/>
<b:widget id='Text3' locked='false' title='sdfgfsgfs' type='Text'/>
</b:section>
</div>
</div>
Don't worry about the b:widget... In my case, they function like a piece of text.
The CSS tags that apply to this code are:
Code:
#right{ /* Right Area */
margin-left:60%; /* related to the space between #left and #right */
margin-top:0px;
}
#sidebar{
margin:0px;
padding:0px;
}
.subcontainer { /* 2 column zone of the right side */
width:98%;
margin-top: 25px;
border:none;
}
.rightsub{
float:left;
width:200px;
}
.rightsub2{
margin-left:57%;
width:160px;
}
.right{
text-align:right;
}
/* Don't know if this also helps:*/
.widget {
margin-bottom: 1em;
}
.widget-content {
margin: 0 0px;
}
#right h2{
width:98%;
font-size:1.6em;
top: 0px;
margin-top: 0px;
margin-right: 0;
margin-bottom: 5px;
margin-left: 0;
padding-top: 15px;
padding-right: 0px;
padding-bottom: 0px;
padding-left: 0px;
}
THE PROBLEM is with the sections "rightsub" and "rightsub2", that are side-by-side. The "rightsub" area displays OK, but the "rightsub2" section has a problem: only the first element (in this case, a widget) displays on top of the "rightsub2" area. All other elements are thrown to the bottom of this area. But the bottom of "rightsub2" only starts where the "rightsub" section ends, creating a huge gap...
Confusing? I'll try throwing an image...
PLEASE HELP!!!!
|