amby
07-06-2004, 04:34 PM
right iv got this page www.geocities.com/ckyobssesedmoron and i want a dashed border around the navigation bit iv tried using css but its not working can anyone help me?
|
View Full Version : totally wierded out by this one amby 07-06-2004, 04:34 PM right iv got this page www.geocities.com/ckyobssesedmoron and i want a dashed border around the navigation bit iv tried using css but its not working can anyone help me? psytek 07-06-2004, 05:40 PM you have to put the navigation bit into a table and edit the properties of the table using css. you could add something like this to you td tag style="border-top:1px #000000 dashed;border-bottom:1px #000000 dashed;border-right:1px #000000 dashed;border-left:1px #000000 dashed;" and that would give you black 1 pixel dashed borders all the way around. but thats the only way i know how to do it. pb&j 07-06-2004, 06:57 PM you have some bad coding errors in your page, but that may be left to a different discussion. for your question at hand, try this... <div style="border: 2px dashed #000000;"> your navigation stuff here. </div> amby 07-07-2004, 08:16 AM thankyou pb&j 07-07-2004, 01:45 PM no worries. good luck. Rinoa Heartilly 07-12-2004, 03:17 AM what if you want the border to be a single straight line? pb&j 07-12-2004, 04:23 AM change DASHED to SOLID. |