thunderdust
Forum Replies Created
-
Forum: Plugins
In reply to: [GD Star Rating] Average Star Rating Per CategoryHey Guys,
Really no one who knows this? Under GD-Star-Ratings i can see the number of votes for each category.
Does anyone know the short/function code to show the mean/average of all posts for a certain category.
thnx
Forum: Themes and Templates
In reply to: Alternating LI background colorsI would like to kick this threat up since it is not working for me
i’ve copied this code
<ul id="recentEntries"> <li class="entriesHead"><h3>Articles</h3></li> <?php query_posts('cat=4&showposts=10'); $alt = ''; while (have_posts()) : the_post(); ?> <li<?php if ($alt=='') { $alt = 'alt' } else { echo ' class='.$alt; $alt = ''; } ?> > <a href="<?php the_permalink() ?>" title="<?php the_title(); ?>"><?php the_title(); ?> <span><?php the_time('F jS, Y') ?></span></a></li> <?php endwhile; ?> </ul>
And for some reason I will get an error ? anyone here who can help out
Forum: Themes and Templates
In reply to: Split Post Separatorsplit post is, when you write an article and want the rest to appear on the next page. it’s the “more tag”
Forum: Themes and Templates
In reply to: How to remove this spacingDear god, this firebug is a gift from heaven ?? i figured it out ?? So many thank you’s ??
To give the answer, wordpress posts the text in the post area between <p></p> which means this give padding to the bottom and top.
Making a <class> with classname p { and giving it 0 padding will solve this
Forum: Themes and Templates
In reply to: How to remove this spacingwell, my appologies, I always thought you guys read the code and found the problem (that is how I do it)
I install firebug (nice btw) And i’m still stuck at the same problem. If you now look at the page.
you’ll see in firebug that there is a space between the title and post (which are located in content). I have no idea why that is since there are nog margins or whatsoever present.
Forum: Themes and Templates
In reply to: How to remove this spacingWhy ? I have posted the css file + the index file and an image to illustrate what the problem is ?
Forum: Themes and Templates
In reply to: How to remove this spacingI start editing my blog further, but here you can see the problem in a picture ??
Forum: Themes and Templates
In reply to: How to remove this spacingThe margin is already 0 on all divs. It is really strange since this is also present at the standard template of wordpress.
Here is an idea of my css and index file
https://www.brittanys-bod.net/css.txt
https://www.brittanys-bod.net/index.txtThnx for the help already