Mar 13, 2005 #1 aw23 Programmer Joined Nov 26, 2003 Messages 544 Location IL I need to create a vertical line next to my sidebar. How is this done? Is it possible to create a border for a table on one side only? Thanks
I need to create a vertical line next to my sidebar. How is this done? Is it possible to create a border for a table on one side only? Thanks
Mar 13, 2005 1 #2 BillyRayPreachersSon Programmer Joined Dec 8, 2003 Messages 17,047 Location GB You could use this CSS: Code: border-right: 1px solid #000000; But without seeing your code, it would be hard to tell you how best to insert it. I would suggest the use of an ID, for example, "mySideNav": Code: <style type="text/css"> #mySideNav { border-right: 1px solid #000000; } </style> ... <whateverElement id="mySideNav"> Hope this helps, Dan The answers you get are only as good as the information you give! Upvote 0 Downvote
You could use this CSS: Code: border-right: 1px solid #000000; But without seeing your code, it would be hard to tell you how best to insert it. I would suggest the use of an ID, for example, "mySideNav": Code: <style type="text/css"> #mySideNav { border-right: 1px solid #000000; } </style> ... <whateverElement id="mySideNav"> Hope this helps, Dan The answers you get are only as good as the information you give!