Changing where “posted on” text is located in TwentyEleven?

If you are using the twentyeleven theme which it looks like you are, there is a function called twentyeleven_posted_on(), on line 24 within your content.php file. If you want to move the posted on below then move this piece of code -> <?php if ( ‘post’ == get_post_type() ) : ?> <div class=”entry-meta”> <?php twentyeleven_posted_on(); … Read more

the_content not working

Without wanting to be rude: You should start by reading some tutorials on PHP. This is (most probably) what you want to do in your question: <?php if (‘bags’ == get_post_type()) the_post_thumbnail(); elseif (‘books’ == get_post_type()) { the_content(‘editor’); the_post_thumbnail(); } ?> Is this working (as you want it to)?

Two scrollbars in popup window

Looking at your site, the double scrollbars are caused by two things: The iframe The CSS declarations applied to a <div> Your iframe has the scrolling=”auto” property set. Change this to scrolling=”no” to turn off the scroll bar. Also, your containing lightbox div (<div id=”LT_LB”>) has its overflow property set to “auto.” Set this to … Read more