Home › Forums › CSS › WordPress Search Page – CSS Looks Different › Re: WordPress Search Page – CSS Looks Different
December 27, 2011 at 2:31 pm
#93454
Member
Sure no prob. So here is the archive.php
$arc_year = get_the_time('Y');
$arc_month = get_the_time('m');
$posts = query_posts( "year=$arc_year&monthnum=$arc_month" );
$count = count($posts);
?>
Archive Results for ">"" Results Found
And here is the css
.l-inside {
margin: 0 auto;
width: 960px;
overflow: hidden;
position: relative;
}
.l-constrained {
width: 700px;
float: left;
margin: 0px 10px 5px 0;
}
The issue is that the site shifts. Everything is in place but it shifts half way through the screen.
Thanks again for your help.