Hi,
I'm using the following css code.
With this code i have a div box with text inside,
with each point having a bullet image before the sentence.
Is there anyway to alter the position of the bullet, ie
push it left more. Is it possible to control it's position.
Tks
-------------------CSS Code----------------------
#input_rules{
margin-left:100px;
margin-right:100px;
padding-right:20px;
border: 1px dashed #284279;
background-color:#F7F7F7;
}
#input_rules p {
line height: 1.8em;
color:#000066;
font: normal 0.75em arial;
text-align:left;
}
#input_rules ul {
list-style-image: url(includes/bullet.gif);
}
--------------------HTML Code----------------------
<div id = "input_rules">
<ul>
<ol>
<li><p><font size="+1"> Username:</font> Use only letters, numbers, and the underscore. Must be between 4 and 20 characters long.</p></li>
<li><p><font size="+1"> Email:</font> Must be a valid email address</p></li>
<li><p><font size="+1"> Password:</font> Use only letters and numbers must be between 4 and 20 characters long</p></li>
<li><p><font size="+2"> *</font> Represents a required field</p></li>
</ol>
</ul>
</div>
I'm using the following css code.
With this code i have a div box with text inside,
with each point having a bullet image before the sentence.
Is there anyway to alter the position of the bullet, ie
push it left more. Is it possible to control it's position.
Tks
-------------------CSS Code----------------------
#input_rules{
margin-left:100px;
margin-right:100px;
padding-right:20px;
border: 1px dashed #284279;
background-color:#F7F7F7;
}
#input_rules p {
line height: 1.8em;
color:#000066;
font: normal 0.75em arial;
text-align:left;
}
#input_rules ul {
list-style-image: url(includes/bullet.gif);
}
--------------------HTML Code----------------------
<div id = "input_rules">
<ul>
<ol>
<li><p><font size="+1"> Username:</font> Use only letters, numbers, and the underscore. Must be between 4 and 20 characters long.</p></li>
<li><p><font size="+1"> Email:</font> Must be a valid email address</p></li>
<li><p><font size="+1"> Password:</font> Use only letters and numbers must be between 4 and 20 characters long</p></li>
<li><p><font size="+2"> *</font> Represents a required field</p></li>
</ol>
</ul>
</div>