help removing unwanted graphic
Posted on
16th Feb 2014 07:03 pm by
admin
How do I remove the small elongated rectangular shape between the "Latest post" and "Archives" section at http://www.simonlindgren.com ?
The code surrounding this place is:
<div class="column span-4 first">
<h3 class="mast">Recent Posts</h3>
<?php $the_query = new WP_Query('cat=-' .$catid. '&showposts=5&offset=1&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post();
$do_not_duplicate = $post->ID; ?>
<div class="home_recent_post">
<?php if ( get_post_meta($post->ID, 'thumb_home_img', true) ) { ?>
<?php } else { ?>
<div class="home_recent_thumb">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php
the_title(); ?>"><?php if (function_exists('the_thumb')) { the_thumb('altappend=recent_&subfolder=recent&width=48&height=48&keepratio=0'); } ?></a>
</div>
<?php } ?>
<div class="home_recent_title" id="post-<?php the_ID(); ?>">
<a href="<?php the_permalink(); ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>
</div>
<div class="home_recent_date">
<?php the_time('F j, Y'); ?>
</div>
<div class="home_recent_auth">
By <?php the_author(); ?>
</div></div>
<?php endwhile; ?>
<?php include('ad_home.php'); ?><?php if ( !function_exists('dynamic_sidebar')
|| !dynamic_sidebar('MiddleColumn') ) : ?>
<?php endif; ?>
</div>
<?php get_sidebar(); ?>
</div>
</div> <!-- end home_content -->
89
45
Other php-forum
need to apply an if/else statement to Tim Thumb script
Not sure how to work this. I essentially want to call a variety of image sizes based on which style
Hyperlink in PHP to MySQL record
Hello,
I am having trouble as i am new to php. I have connected to the database and I have di
array_combine() trouble w/csv file
I have a problem with a piece of code I wrote to import some records from a csv file into mysql. I h
Newb advice
Hi all,
I'm a flash front end designer and I've taken on a project that needs some back end p
get font info from a font file
hello,
Does anyone know how to get font info from a font file ... using php of course !
<
Do something every fifth time?
I'm trying to write a loop, but I want it to do something different after every fifth instance. Like
Best PHP Documentation generator
Hello guys!
I would like to hear from you what is the best PHP documentation generator. Perso
Passing variables with pagination - iterating through unique id per link
Hi everyone,
I have seen a few topics like this one. Still cant find the specific thing, so I am
utf8_general_ci error ??
I have all kinds of data to be inserted in database table
//I am getting this error
Yo
Securing a user input - need some confirmation
Hello All,
I am in the process of recoding a large proportion of an e-commerce site, one of t