faq’s
- How do I add other components to my side bar?
- other faq’s are coming soon
1. How do I add other components to my sidebar?
Easy! You need to edit sidebar.php from wp-content/themes/rdc0.6.2_langshott/. Each new item you add to the side bar requires it’s own div, so lets say for example you wanted to add a bunch of links. Find the last line in the file, it’s should be…
</div><!--/#sidebar-->
Then just before this add the following code..
<div class="side">
<h3>Links</h3>
<ul>
<li><a href="http://link">link name</a></li>
<li><a href="http://link">link name</a></li>
<li><a href="http://link">link name</a></li>
</ul>
</div>
Obviously changing the links to whatever you want. You will see that all the pre-existing divs have an id. This is to add extra style elements such as unique bullets, you can edit the base.css file and add your own id for each of the new classes you wish to add if you’re feeling brave. You can of course add more than just a series of links to your side bar, check out the wp-wiki for a list of tags that you can add into the side bar.