webgoddess
Forum Replies Created
-
Forum: Reviews
In reply to: [Photo Gallery - Responsive Image Galleries by Supsystic] Didn't work for usThe customer service is superior for this plugin. If you have a problem, they will fix it.
Thank you!
Forum: Plugins
In reply to: [Jigoshop] Variations show no Buy buttonSame problem with twenty fourteen. Will send you system info.
Forum: Themes and Templates
In reply to: Lining up the columns??I was also having the problem of left and right (sidebar) columns lining up (in IE only) using a template called The Cabinet. I was fighting with the stylesheet, but then noticed that the comment box seemed to be pushing everything over. I edited the columns of the comment box (in comment.php) from 100% to 85% and the problem was solved in both browsers!
Forum: Fixing WordPress
In reply to: How to give link to Blog Internal Page from Post?Is there no way to make an internal link? Do all links to other posts or pages on the site have to go out to the internet and back in again?
Forum: Fixing WordPress
In reply to: Calendar optionsThe best I’ve found is Easy PHP Calendar (easyphpcalendar.com) for only $19.95.
Forum: Fixing WordPress
In reply to: Side menu goes belowThe page.php has an error in the placing of the closing <div> codes. If you compare it carefully with index.php, you will see that the last several lines are just slightly different. Here is the correct code (from the template I am using):
<?php get_header(); ?><div id="columns">
<div id="content"><?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 class="pagetitle"><?php the_title(); ?></h2>
<div class="entrytext">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?><?php link_pages('<p><strong>Pages:</strong> ', '</p>', 'number'); ?>
</div>
</div>
<?php endwhile; endif; ?>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<!-- content -->
<?php get_sidebar(); ?>
</div>
<!-- columns -->
<?php get_footer(); ?>I tried using the CSS route to start, but this did it.