dmd54
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need help with creating a portfolio with LightboxSince this is a purchased theme I think you’ll get better information by contacted the theme developer. They should provide support since you paid for it.
Forum: Fixing WordPress
In reply to: Sidebar appearing below content on front pageAre you using a plugin for your social sharing?
Forum: Fixing WordPress
In reply to: nextgen image not showingWell, that makes me feel like an idiot. I completely failed to remember that it was set to 8 from the way I previously had it laid out in two columns instead of three.
Thanks!
Forum: Fixing WordPress
In reply to: menu in wrong placefixed it…wish i could say exactly what the problem was but i just decided to start over from scratch.
Forum: Fixing WordPress
In reply to: wrapper not wrappingI have a few different page templates I’ve created and I was simply missing the “content” opening div on one of them. Nothing special, just overlooked it.
Forum: Fixing WordPress
In reply to: wrapper not wrapping…and of course i figured it out right after writing this.
Forum: Fixing WordPress
In reply to: page excerptThat did it. Thanks a lot for the help.
Forum: Fixing WordPress
In reply to: page excerptOk – I found another way to do it. I didn’t realize I had not made a category.php, so added that and called it through the functions.php…not sure if that’s the best way but it seems to achieve what I was after.
However, I still have the problem of the sidebar and excerpt link being dead. Any suggestions why that would be happening? The category.php is just a copy of the above template.
Forum: Fixing WordPress
In reply to: page excerpthere it is:
<?php get_header(); ?> <?php /* Template Name: Main Blog */ ?> <div id="menuWrap"> <?php if ( function_exists( 'wp_nav_menu' ) ){ wp_nav_menu( array( 'theme_location' => 'main-menu', 'container_id' => 'mainMenu', 'container_class' => 'ddsmoothmenu', 'fallback_cb'=>'primarymenu') ); }else{ primarymenu(); }?> </div><!-- END OF MENU WRAPPER --> <!-- Begin #colLeft --> <div id="content_wrapper"> <div id="colLeft"> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="postItem"> <h1><a href="<?php the_permalink() ?>"><?php the_title(); ?></a></h1> <div class="meta"> <?php the_time('M j, Y') ?> // by <span class="author"><?php the_author_link(); ?></span> // <?php the_category(', ') ?> // <?php comments_popup_link('No Comments', '1 Comment ', '% Comments'); ?> </div> <?php the_excerpt(__('read more')); ?> <div class="postTags"><?php the_tags(); ?></div> <?php comments_template(); ?> </div> <?php endwhile; else: ?> <p>Sorry, but you are looking for something that isn't here.</p> <?php endif; ?> </div> <!-- End #colLeft --> </div><!-- END CONTENT WRAPPER --> <?php get_sidebar(); ?> <?php get_footer(); ?>thanks – also, I had added an argument ‘bali’ but still nothing showed up so I took it out.
Forum: Fixing WordPress
In reply to: 404 errorsThanks. I just deleted all javascripts and reinstalled and it started working.
Forum: Fixing WordPress
In reply to: adding custom theme support…or do I add an argument into the above theme support?
Forum: Fixing WordPress
In reply to: menu issueSweet! Thanks for that, I had tried so many variations but of course somehow managed to skip li li
cheers!
Forum: Fixing WordPress
In reply to: resizing issues – content cut offI’ll play around with that and see what works.
thanks
Forum: Fixing WordPress
In reply to: resizing issues – content cut offthanks WPyogi for catching the blurb error. deleted that.
Andrew – the header is cut off as well so i’m not sure that wrapping the content wrapper will solve it.
neither the header or content have widths set so they should be full page width.
Forum: Fixing WordPress
In reply to: my wrapper isn't wrappingIf only you could have posted this a few hours ago – it would have saved me from banging my head against the wall!
thanks
solved in two seconds with overflow: auto