Kage Kazumi
10-16-2012, 05:40 AM
As most who know who have been helping me. I have a list that need to be embedded in forum post. Now I know how to do this, but the page (logo section) is off alignment. How can I fix this so it aligns on the site and inside the OBJECT element on the other site.
Site: http://zanime.net
Object Section: http://forums.kevenpirritano.com/index.php?/topic/2-finally-going-to-start-writing/page__p__4#entry4
HTML
<div id="logo-container">
<img src="images/logo.png" alt="" />
<input type="reset" value="Intructions" id="instructions">
<input type="reset" value="Reset" id="reset">
</div>
<div id="dropdown-container">
<div id="dropdown-header">
<span>Software Filter</span>
</div>
<p id="dropdown-description">
<select name="filterBox1" id="filterBox1">
<option value="">OS</option>
<option value="Windows" id="windows">Windows</option>
<option value="Linux" id="linux">Linux</option>
<option value="Mac" id="mac">Mac</option>
</select>
<br />
<select name="filterBox2" id="filterBox2">
<option value="">Type</option>
<option value="2D">2D</option>
<option value="3D">3D</option>
<option value="2D3D">2D & 3D</option>
</select>
<br />
<select name="filterBox3" id="filterBox3">
<option value="">Price Type</option>
<option value="Free">Free</option>
<option value="Commercial">Commercial</option>
</select>
</p>
<div id="dropdown-footer">
</div>
</div>
CSS
#logo-container{
width:295px;
height:50px;
position:relative;
top:90px;
left:450px;
}
#dropdown-container{
width:120px;
margin:auto; /*this may be removed */
border:1px solid #000;
border-radius:5px 5px 0 0;
background-image:url(../images/table-bg.jpg);
overflow:hidden;
box-shadow:6px 6px 6px #666; /*this may be removed */
text-align: left;
position:relative;
left:190px;
}
#dropdown-header{
padding:4px;
background-image:url(../images/bg-title.png);
background-repeat:repeat-x;
background-position:0 -2px;
font-size: 15px;
font-weight:bold;
text-shadow: 1px 1px 1px #143607;
filter: dropshadow(color=#143607, offx=1, offy=1);
color:#fff;
}
#dropdown-description{
float:left;
width:160px;
height:65px;
padding:3px 10px;
margin:0;
font-weight:bold;
}
#dropdown-footer{
clear:both;
padding:4px;
background-color:#466505;
font-size:17px;
text-shadow:1px 1px 1px #143607;
filter: dropshadow(color=#143607, offx=1, offy=1);
color:#eee;
overflow:hidden;
}
Site: http://zanime.net
Object Section: http://forums.kevenpirritano.com/index.php?/topic/2-finally-going-to-start-writing/page__p__4#entry4
HTML
<div id="logo-container">
<img src="images/logo.png" alt="" />
<input type="reset" value="Intructions" id="instructions">
<input type="reset" value="Reset" id="reset">
</div>
<div id="dropdown-container">
<div id="dropdown-header">
<span>Software Filter</span>
</div>
<p id="dropdown-description">
<select name="filterBox1" id="filterBox1">
<option value="">OS</option>
<option value="Windows" id="windows">Windows</option>
<option value="Linux" id="linux">Linux</option>
<option value="Mac" id="mac">Mac</option>
</select>
<br />
<select name="filterBox2" id="filterBox2">
<option value="">Type</option>
<option value="2D">2D</option>
<option value="3D">3D</option>
<option value="2D3D">2D & 3D</option>
</select>
<br />
<select name="filterBox3" id="filterBox3">
<option value="">Price Type</option>
<option value="Free">Free</option>
<option value="Commercial">Commercial</option>
</select>
</p>
<div id="dropdown-footer">
</div>
</div>
CSS
#logo-container{
width:295px;
height:50px;
position:relative;
top:90px;
left:450px;
}
#dropdown-container{
width:120px;
margin:auto; /*this may be removed */
border:1px solid #000;
border-radius:5px 5px 0 0;
background-image:url(../images/table-bg.jpg);
overflow:hidden;
box-shadow:6px 6px 6px #666; /*this may be removed */
text-align: left;
position:relative;
left:190px;
}
#dropdown-header{
padding:4px;
background-image:url(../images/bg-title.png);
background-repeat:repeat-x;
background-position:0 -2px;
font-size: 15px;
font-weight:bold;
text-shadow: 1px 1px 1px #143607;
filter: dropshadow(color=#143607, offx=1, offy=1);
color:#fff;
}
#dropdown-description{
float:left;
width:160px;
height:65px;
padding:3px 10px;
margin:0;
font-weight:bold;
}
#dropdown-footer{
clear:both;
padding:4px;
background-color:#466505;
font-size:17px;
text-shadow:1px 1px 1px #143607;
filter: dropshadow(color=#143607, offx=1, offy=1);
color:#eee;
overflow:hidden;
}