Jump to content
Sign in to follow this  
scottimpactyourcompanycom

Feature box positioning

Recommended Posts

scottimpactyourcompanycom

I'd like to position the feature boxes on certain pages. I've done that through the option of the following page- http://blazemarketinginc.com/why-be-at-the-top The problem is that it's positioned at the top. Is there a way to position the feature boxes under the main content of the page? Thanks in advance, Scott

Share this post


Link to post
Share on other sites
scottimpactyourcompanycom

this post should be listed under the iBlog section.

Share this post


Link to post
Share on other sites
cmunns

In the template_page.php file you just need to move that first line of code underneath the line that "requires" the _posts.php file Let me know if you have problems

Share this post


Link to post
Share on other sites
scottimpactyourcompanycom

Adam, this below is the code on the template_page.php file. I've positioned the first line of code (starting with <?php if...) in various places, first right after the require line. But it doesn't shift those feature boxes anywhere. What am I doing wrong? Thanks.. <?php if(pagelines('featureboxes', $post->ID) && VPRO) require(PRO.'/template_fboxes.php');?> <!-- Standard Page Code --> <div id="maincontent"> <div id="content"> <?php require(THEME_LIB.'/_posts.php');?> </div> <!-- end content --> </div> <?php get_sidebar(); ?> <!-- End Standard Page -->

Share this post


Link to post
Share on other sites
Andrew

Something like this: `

<?php require(THEME_LIB.'/_posts.php');?>
<?php get_sidebar(); ?> <?php if(pagelines('featureboxes', $post->ID) && VPRO) require(PRO.'/template_fboxes.php');?> ` Is what Adams getting at... Did you want this changed on all pages? What about the widgetized sidebars in the footer? Wouldn't they work for this?

Share this post


Link to post
Share on other sites
scottimpactyourcompanycom

No, I just want the positioning on the 3 feature box pages. For the file template_page.php...in the editing section, I've replaced my code with the code you pasted above. For some reason, it just won't move those boxes from the top to the bottom. http://blazemarketinginc.com/why-be-at-the-top Is this the right php page? It should logically work...i don't understand why it's being a pain..

Share this post


Link to post
Share on other sites
bryan-hadaway

What PageLines theme and version are you using and what feature template are you using for that page, standard, full width? Thanks, Bryan

Share this post


Link to post
Share on other sites
scottimpactyourcompanycom

iBlog 4.0.6 full width page

Share this post


Link to post
Share on other sites
cmunns

Then you should be editing the template_fullwidth.php file Just move that line from the top to the bottom of the code

Share this post


Link to post
Share on other sites
scottimpactyourcompanycom

Works great...thanks all!

Share this post


Link to post
Share on other sites
bryan-hadaway

Good to hear it all worked out. Thanks, Bryan

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×