Mem
Forum Replies Created
-
Forum: Themes and Templates
In reply to: How Do I Add a 2nd Sidebar?I just did mine and followed this advice from someone
“There are several things you must do, firstly you must add in your css a menu navigation- I copy the sidebar css and name it #menu in the css right under the sidebar css. Second you must add this code (a few lines down from the top depending on what theme you are using) to your index.php (main template), archive.php, page.php, search.php (search results), single.php (single post), and 404.php if you have it.
<?php
require(‘menu.php’);
?><div id=”content” class=”narrowcolumn”>
Copy your sidebar.php in your text editor and change it to the example below (noting in red bold to change the name from sidebar or whatever it’s named to menu):
<div id=”menu”>
-
<!– Begin Navigation –>
- <h2>:: Welcome ::</h2>
- ” title=”Home”>Home
<?php wp_list_pages(‘sort_column=menu_order&depth=1&title_li=’); ?>
<!– End Navigation –>
<!– Begin Calendar –>
- <h2>:: Calendar ::</h2><?php get_calendar(1); ?>
<!– End Calendar –>
</div>
Then save the page as menu.php. (yours will be different)
Now you need to see what your theme looks like now, if your content area is too large and causes the new sidebar to drop or other weird things happen you will need to adjust your content area of your css possibly for size but this also depends on what type of theme you are using fluid or fixed. “
With mine I copied the sidebar template and named it menu. then I copied the sidebar files in the style sheet and named them menu. and changed margin-right to margin-left.
Forum: Plugins
In reply to: Plugin for search category in admin ???Thankyou Very Much ?? Things will be a bit easier now.
Forum: Plugins
In reply to: Hide Post Previews and Have only Title???whoooo hooo thankyou very much !!!
Forum: Plugins
In reply to: Hide Post Previews and Have only Title???Wow thanks for that .. it worked ?? Now to work out how to reduce the font size for the names and to have more listed without creating more posts on the main page *sighs*