I have a pre designed template I am using for my website. how can I add a side menu bar to a template?
I have my website thru justhost.com and I am using a Free CSS template. the website is www.fratwood.com
Public Comments
- Ugh. Templates can be a pita. It all depends on how the template is designed/coded on how you would add a sidebar. Basically, you would need to create right or left margin in the main body div and add a div tag floating left or right depending on which side you want the sidebar. The margin of the main content div should allow for the width of the sidebar. Without seeing the template and knowing how much access you have to the code, it's a pretty difficult question to specifically answer. Hope this helps though. ---------------------- Assuming you have access to the full code and not just the css, add a div before the content div such as: <div id="leftSidebar">This will be the left sidebar</div><div id="content"> etc... The css would be: <style type="text/css"> #content { margin:0 0 0 200px; } #leftSidebar { width:200px; float:left; } </style>
- You can also use the Macromedia Dreamweaver for this purpose. There are so many readymade Menu Bar in it!
Powered by Yahoo! Answers