Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: sidebar questionWhat’s “The ASSOCIATES?” You mean Contributors?
Forum: Fixing WordPress
In reply to: Single Post PER Category on IndexHere’s similar solution.
http://rhymedcode.net/1001-wordpression-loops/grouped-by-category/Note that in the example above, you have to create a Loop for each category.
If you add/remove a category frequently, then you need to develop code that will grab all categories.
Forum: Themes and Templates
In reply to: Unwanted Link in Header BarAdd the following in the theme’s style.css
a:hover .description {
color: #e58712;
}Forum: Themes and Templates
In reply to: Unwanted Link in Header BarOkay, back up this one file first. Then, replace the following.
<div id="header">
<a href="http://chrisfiddes.com">
<div id="headerimg">
<h1>Stirling</a></h1>
<div class="description">My Personal Page</div>
</div>with the following
<div id="header">
<a href="http://chrisfiddes.com">
<div id="headerimg">
<h1>Stirling</h1>
<div class="description">My Personal Page</div>
</div>
</a>
</div>Forum: Fixing WordPress
In reply to: this – space – for – your – linksMost likely, it would be in
header.phpin that theme folder; otherwise,index.phpForum: Fixing WordPress
In reply to: Post SummariesCheck out the following plugin.
http://guff.szub.net/the-excerpt-reloadedForum: Fixing WordPress
In reply to: how do i get wordpress 1.6 for testinghttp://wordpress.org/download/svn/
However, we don’t support this version on this forum.
Forum: Themes and Templates
In reply to: Wanted: CSS guru/wiz to help with new template/theme dev@techgnome, about your solution with absolute-positioned sidebar: Imagine if the sidebar is longer than the content. The footer won’t clear that sidebar; the footer will overlap with the sidebar. And that’s exactly why we used to curse the Classic Theme a lot.
krugerusa’s solution will work, too. It’s just it’s not that “semantic,” if you care at all.
My solution, well, it’s working perfectly inside my head.
Forum: Installing WordPress
In reply to: [Unknown column ‘time_modified’ in ‘order clause’]Are using the template tag wp_list_pages() and passing parameter ‘sort_column=time_modified’? Pass ‘sort_column=post_modified’ instead.
Forum: Themes and Templates
In reply to: Wanted: CSS guru/wiz to help with new template/theme devAbsolute position for the header.
Float position for content and sidebar, and play with their top margins.Forum: Fixing WordPress
In reply to: Refuses to open a PHP filerun the
wp-admin/upgrade.phpForum: Themes and Templates
In reply to: Adding Tagline to Pool ThemeYou could put it right below where you output the title, like the following
<h1>......</h1>
<div class="tagline"><?php bloginfo('description'); ?></div>Forum: Fixing WordPress
In reply to: Can’t Float an Excerpt ImageFirst thing, change the following
<div id="floatleft">to the following
<div class="floatleft">Forum: Fixing WordPress
In reply to: blank admin pageGood to hear that. You could delete my account ‘alphaoide’
Forum: Fixing WordPress
In reply to: blank admin pagenot working for me either.
You never modified the content of wp-admin/ right? Just delete folder wp-admin/ and upload a new copy of that folder.