Stuart King wrote:
> How do I get the "contact>>>" justified right and the "<<<back to steps" to
> stay justified left
>
> URL:
>
> http://www.adrianavargasdesign.com/pages/services.html
>
> thank you,
>
> --s
>   





If you mean one to be left, and the other to be right, and both to be on 
the same line, you could try this:
css:
.stuff {border: 1px solid red;overflow: hidden;width: 100%;}
.left-stuff {float:left; width: 16%;}
.right-stuff {float:right; width: 16%;margin-right:-17px;}     
html:    
<div class="stuff">
<div class="left-stuff">
<p>&lt;&lt;&lt; <a href="../index.html">back to steps</a></p>
</div><!--/close left-stuff-->
<div class="right-stuff">
<p><a href="contact.html">contact info </a>&gt;&gt;&gt;</p>
</div><!--/close right stuff-->
</div><!--/close stuff-->



-- 
http://chelseacreekstudio.com/

______________________________________________________________________
css-discuss [EMAIL PROTECTED]
http://www.css-discuss.org/mailman/listinfo/css-d
List wiki/FAQ -- http://css-discuss.incutio.com/
List policies -- http://css-discuss.org/policies.html
Supported by evolt.org -- http://www.evolt.org/help_support_evolt/

Reply via email to