eridan
Forum Replies Created
-
Forum: Installing WordPress
In reply to: Pretty Permalinks QuestionAre you sure mod_rewrite is working as it should. You could try adding a very simple rewrite rule, so you can rule that out..
Forum: Fixing WordPress
In reply to: How to modify the query input name in the search form ?modify searchform.php in the theme folder..
Forum: Plugins
In reply to: Different Headers?Forum: Themes and Templates
In reply to: Weird list stylingdifferent styling for lists inside .entry, and .entrytext (no styling at all for .entrytext lists)
Forum: Fixing WordPress
In reply to: Site up but no images shown(i searched)It’s the multiplication sign, or the ‘x’, which screws up the URL’s (to the stylesheet), since you’re using the ascii number for it.
& # 215;
Replace that with the real character..Forum: Fixing WordPress
In reply to: Post Serial Number within a CategoryYes, it will
Forum: Fixing WordPress
In reply to: Image Problems…providing the URL to your blog will make it easier to see what’s wrong.
Forum: Fixing WordPress
In reply to: Another color if admin comment postThis might help
http://wordpress.org/support/topic/57111?replies=2Forum: Fixing WordPress
In reply to: simplifying frontpage/index.php – remove permalink below post?Look for
<?php the_permalink() ?>
and remove it..Forum: Fixing WordPress
In reply to: How to remove the border around images in PagesYou can do that by editing your css-file.
If you want borders around some of the pictures (in posts etc), and just remove the ones on pages, use:
.entrytext img {
border:none;
}
If you want to remove every border on the entire website, use something global.
img {
border:none;
}
Forum: Plugins
In reply to: Recent played mp3’s etcYou could always look at http://www.last.fm/
Forum: Themes and Templates
In reply to: Manually retrieve posts instead relying on the loopI’d probably add a counter in the loop, which is increased after each post. Then add something like:
<?php if($counter == 1) {?>
<div class="firstpost">
<?php } else { ?>
<div class="post">
<?php } ?>
And just style the .post and .firstpost in your stylesheet..`Forum: Themes and Templates
In reply to: Images on SidebarMaybe by editing sidebar.php, and adding your images there..
Forum: Themes and Templates
In reply to: sidebar links not conforming to <li>
li.page_item {
display: inline;
}
Remove that from your css file