Equal
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Blog page formatting wrongYou will have an extra closing
</div>somewhere that is causing the problem. I am guessing that it will be just above the 2<br />tags you have.Open your template file being used to display this blog page (probably index.php) and then try to find it in here.
Forum: Fixing WordPress
In reply to: how to modify the behavior of the wp_head functionWould it not be easier just to divide your plugins output by 2 so that it negates the doubling of the
wp_headfunction?Perhaps there are some styles in your stylesheet that are relative only to category archive pages.
Look for
body.categoryin your stylesheet or check for any instances ofdisplay: none;A link to the problem always helps people diagnose too!
Forum: Fixing WordPress
In reply to: 'no homepage (index.html) has been uploaded to this location'I am seeing your blog just fine with the hello world post – perhaps clear your browsers cache.
Forum: Fixing WordPress
In reply to: Organizing Links With "wp_list_bookmarks"As you can see from the page below ‘slug’ is not aargument available in the order_by parameter.
http://codex.ww.wp.xz.cn/Function_Reference/wp_list_bookmarks
My guess is this is why it doesn’t work
Forum: Themes and Templates
In reply to: Titling 3 Dynamic Sidebars in the Widget PanelNo problem, glad to help 🙂
Forum: Themes and Templates
In reply to: Titling 3 Dynamic Sidebars in the Widget PanelSomething like this:
register_sidebar( array( 'id' => 'belownav', 'name' => __( 'Below Main Nav' ), 'description' => __( 'This is a widgetized area directly below the sites main navigation.' ), 'before_widget' => '<div class="widget belownav">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title belownav-title">', 'after_title' => '</h3>' ) ); register_sidebar( array( 'id' => 'sidebar', 'name' => __( 'Sidebar' ), 'description' => __( 'This is a widgetized area for the sidebar used on all posts.' ), 'before_widget' => '<div class="widget">', 'after_widget' => '</div>', 'before_title' => '<h3 class="widget-title belownav-title">', 'after_title' => '</h3>' ) );Forum: Themes and Templates
In reply to: Titling 3 Dynamic Sidebars in the Widget PanelTake a look here:
http://codex.ww.wp.xz.cn/Function_Reference/register_sidebar
Forum: Fixing WordPress
In reply to: Help restoring pleaseUnless you have taken a WordPress export file of the old site then I am afraid the old posts are gone as they are stored in your database.
If you have a WordPress export file of your old posts you can import them. Do this in the Tools menu of the dashboard.
The database is probably more important than the files that you have, so always back this up regularly.
Forum: Fixing WordPress
In reply to: Papes do not load upIn your web hosts control panel.
Forum: Fixing WordPress
In reply to: Rss feed problemIt seems to the be there and working for me:
http://leadermarketplace.com/feed/
Provide a link on the page somewhere so that people can click it to go to the feed – this may help people subscribe.
Forum: Themes and Templates
In reply to: Twenty 10 HeaderYou can add image using the “Featured Image” box when writing a post when using the Twenty Ten theme and this will show in the header image space.
Forum: Fixing WordPress
In reply to: Customize a file path with %pagename%Try this:
<?php $slug = basename(get_permalink()); ?> <img src="/images/<?php echo $slug; ?>.png"/>Should work inside the loop.
Forum: Fixing WordPress
In reply to: Need some css help<div id="wrapper">It comes directly after
<div id="nav">in the code. Its on line 42 ofbase.cssForum: Themes and Templates
In reply to: Lysa Theme WidgetsIt must be contained somewhere else in your theme then in another of your themes template files.