virtual134
Forum Replies Created
-
Forum: Themes and Templates
In reply to: ChaoticSoul Widgetized… Ugly Bullets?!===It’s one of these 2 lines of code, or both.====
.top .entry { font-size: 1.1em; }
.entrytext { padding: 0 10px 0; line-height: 2em; font-size: 1.1em; }.entrytext h2 { border-bottom: 1px solid #bd934f; display: block; }
.entrytext ul { list-style-type: square; }^^^^ Change the word “square” to “none”
#sidebar ul { margin: 0 0 10px; padding: 0; border-top: 1px solid #363430; border-bottom: 1px solid #363430; }
#sidebar li { display: block; padding: 4px 10px; background: #161410; margin: 4px 0; }^^^^ Change the word “block” to “none”
Forum: Themes and Templates
In reply to: How to change the link color from Red to Blue?Yep, I figured it out
Forum: Themes and Templates
In reply to: How can I make the distance between posts shorter?hmmm
Forum: Themes and Templates
In reply to: My new wp theme – acosmin v4B-E-A-utiful!
Forum: Themes and Templates
In reply to: Want cheaper DVDs,Golf Clubs,Bags, Jewellery,etc.?get out
Forum: Themes and Templates
In reply to: How can I make the distance between posts shorter?Here’s the index.php file
<?php get_header(); ?>
<div id=”content”>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1>” rel=”bookmark”><?php the_title(); ?></h1>
<p class=”detpost”>Posted on <?php the_time(‘F j, Y’); ?> – Filed Under <?php the_category(‘, ‘) ?> </p>
<?php the_content(__(‘View’));?>
<!–
<?php trackback_rdf(); ?>
–>
<p><?php comments_popup_link(”, ‘1 Comment »’, ‘% Comments »’); ?></p>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p>
<?php endif; ?>
<?php posts_nav_link(‘ — ‘, __(‘« go back’), __(‘keep looking »’)); ?>
</div>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
<!– The main column ends –>
<?php get_footer(); ?>see anything there?
hmmm, I read another question on this recently, he said he just added
margin-top: 0px;
to the body, so where your header image is.
another thing…I was looking at your page source and this is on there—-<div id=”wrapper”>, I’m wondering if it has anything to do with it.
Well, your problem is the header image…there’s a big white bar along the top of it…just edit the image lol
Forum: Themes and Templates
In reply to: How can I make the distance between posts shorter?Are there any other editors I can use?
Because I got rid of all the <div style=”clear:both;”></div> (except the one in the footer), and I think the code you just posted has nothing to do with it, it has 0px padding as it is. I’m completely stumped. I appreciate the help.Forum: Themes and Templates
In reply to: Magazine-style layoutHmmm I imagine “issue” could act as an archive of some sort. Like, instead of March’s archives it could be Issue 1, etc… I’d definitely say it’s possible.
Maybe use a layout like this one – http://www.wpthemesfree.com/view.php?theme_id=249
Forum: Themes and Templates
In reply to: How can I make the distance between posts shorter?took ’em all out and didn’t solve it. any other ideas?