jbellatl
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Messed up Category PageShadow_boi — You opened a door or thought for me which led to me solving my issue. When I saw this post a light went off.
@futurepocket. The best way to troubleshoot these problems is time. Start putting ‘xxxxxxxxxxxxxx’ in spots to see where they show up to see if your close to the problem or even on the right page. <!– Comment out stuff –>, // and see how it looks. On, and on, and on.
Thanks guy.
Forum: Themes and Templates
In reply to: Side bar is showing below contentNo, you guys mess around so many sidebar malarkey it’s probably a bone cringing term.
I love what you guys are going, thank you.
Forum: Themes and Templates
In reply to: Side bar is showing below contentFixed it at long last!
Ok the fix in this side bar case… went to /wp-content/themes/[YOUR_THEME]/library and opened up template_page.php (may be a different name for your theme).
Went from…
<?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();?> <————not right<!– End Standard Page –>
TO:
<?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 –>
<?php get_sidebar(); ?> <—–Inside the container
</div><!– End Standard Page –>
I guess the moral here is is make sure that side bar is in the container. Hit me up if you need help.
Forum: Themes and Templates
In reply to: iblogpro 4 nav issuesI deleted the hook and the thesis theme to no avail
Forum: Themes and Templates
In reply to: iblogpro 4 nav issuesthis is the hook that I added….
/*move the nav bar below the header*/
remove_action(‘thesis_hook_before_header’, ‘thesis_nav_menu’);
add_action(‘thesis_hook_after_header’, ‘thesis_nav_menu’);