mikieshow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Word wrap not working around imagesDarn, did it again, need a new keyboard! Here’s the correct link:
https://themikieshow.org/?page_id=66Forum: Fixing WordPress
In reply to: Word wrap not working around imagesOops, mistyped the page link above:
htp://themikieshow.org/?page_id=66Forum: Fixing WordPress
In reply to: Word wrap not working around imagesI have a series of episodes as audio on my “listen” page. I want to insert a left aligned image as an icon for that particular episode, done, no problem. Next to the image is text with the audio player, ok, done that. Now for the next episode, after a double space, I want to start a new paragraph and repeat the whole process. Trouble is, the word wrap won’t let me have a new paragraph. My style sheet (I think ) keeps loading everything it can into the field next to that first image and won’t let me start a new paragraph no matter how many return keys or space keys I press. Using theme Vita. https://themikieshow.org/page_id=66. Any help is greatly appreciated.
Forum: Fixing WordPress
In reply to: More tag is not workingAbsolutely. Clicking the button in the post text menu bar (under HTML). There’s code similar to my index page on my page.php as well if that matters. When I publish or preview the page, all the text shows up in a single frame with no “more” in site. I’ve been working around with a hyperlink to a child page but it’s a funky way to do it since I have to redirect comments back to get the comment counter to register on the original post page. A lot of people seem to be having a similar problem…
Thanks.Forum: Fixing WordPress
In reply to: More tag is not workingYup, same problem More tag doesn’t work no matter what I do. Using theme Vita 1.6. Posts to author unanswered. Any help? Below is the code to my index page. Similar code is on the page.php. Thanks in advance.
<?php get_header(); ?> <div id="content-wrap"> <div id="content"> <div class="gap"> <?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2 class="post-title"><a class="intitle" href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"> <?php the_title(); ?> </a> <span class="commr"> <?php comments_popup_link('0', '1', '%'); ?> </span></h2> <div class="timr"> Posted on <?php the_time('F d, Y') ?> by <?php the_author() ?> <?php edit_post_link('e', '<span class="editr">[', '] </span>'); ?> </div> <div class="entry"> <?php the_content('Read the rest of this entry →'); ?> </div> <p class="postmetadata"> <?php the_tags('Tags: ',', ','<br />');?> <span class="catr">Category <?php the_category(', ') ?> </span> </p> </div> <?php endwhile; ?> <?php if(function_exists('wp_pagenavi')) { wp_pagenavi(); } else { ?> <div class="navigation"> <div class="alignleft"> <?php next_posts_link('← Previous Entries') ?> </div> <div class="alignright"> <?php previous_posts_link('Next Entries →') ?> </div> </div> <?php } ?> <?php else : ?> <h2 class="center">Not Found</h2> <p class="center">Sorry, but you are looking for something that isn't here.</p> <?php include (TEMPLATEPATH . "/searchform.php"); ?> <?php endif; ?> </div> <!-- /gap --> </div> <!-- /content --> </div> <!-- /content-wrap --> <?php get_sidebar(); ?> <?php get_footer(); ?>