dailydog
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: customize widgetsI disabled the “currently reading” widget and plugin and that did the trick. Thanks.
Forum: Fixing WordPress
In reply to: customize widgetsI don’t have any admin themes.
I tried moving the scriptaculous/ directory, but that didn’t change anything.Forum: Fixing WordPress
In reply to: customize widgetsWell, every box has this tiny grey square. You should be able to click on it to change the contents of the box, but that just doesn’t work.
Forum: Themes and Templates
In reply to: changing order of link categories.This may be totally beside the point…
Am I right that you want to change the order of your link categories?
The easiest way to do that is to add spaces in front of the names of your categories. For instance 5 spaces before the one you want on the top, 4 for the one you want in second place,…
The pages will always appear above your links, unless you move the code.
Normally the code will appear like this:
<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>- <h2>Archives</h2>
-
<?php wp_get_archives(‘type=monthly’); ?>
- <h2>Categories</h2>
-
<?php wp_list_cats(‘sort_column=name&optioncount=1&hierarchical=0’); ?>
<?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
<?php get_links_list(); ?>All you have to do is move the first line (<?php wp_list_pages(‘title_li=<h2>Pages</h2>’ ); ?>) to the bottom.
I fixed the pages problem by removing that line of code all together. I create pages and then add a link to them in one of my categories. (manage pages -> right click on view and copy link location and you have your url)
Forum: Fixing WordPress
In reply to: space between link categoriesNo. I had a look at it, but I don’t know what part to change.
Forum: Fixing WordPress
In reply to: IE again but also something elseThanks for the tips.
I installed the mild explorer destroyer. The rest I somehow managed to fix.Forum: Fixing WordPress
In reply to: Sidebar vanishedThanks for the replies. Problem solved (partly). My sidebar is back, but everything is out of alignment. I’ll figure this one out too I guess. ??