veranopage
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: HTML Tables do not show LINES???WHYtable{ border-collapse: separate; border-spacing: 0; }
Found that….
Forum: Fixing WordPress
In reply to: HTML Tables do not show LINES???WHYOk, looking now.
Forum: Fixing WordPress
In reply to: HTML Tables do not show LINES???WHYJust a really simple table, like the ones here
https://www.w3schools.com/html/html_tables.aspSomething that will SHOW the lines
Forum: Fixing WordPress
In reply to: HTML Tables do not show LINES???WHYI am confused, what do you mean? What am I looking for? Shouldnt i be able just to put the HTML in the html “section” of the post?
Forum: Fixing WordPress
In reply to: HOW TO: After clicking on link of category, shows FULL postsSuccess.
Forum: Fixing WordPress
In reply to: HOW TO: After clicking on link of category, shows FULL postsI think its at the bottom of this`<?php if (function_exists(‘wp_pagenavi’)) : ?>
`Forum: Fixing WordPress
In reply to: how to allow posts to how FULL content and not previewI think the answer is towards the bottom of the code but I cant wrap my head around it.
Forum: Fixing WordPress
In reply to: Pages don’t display anythingWhat theme are you using? Any plugins?
Forum: Fixing WordPress
In reply to: how to allow posts to how FULL content and not previewIts not resolved, please view the following, what do I change to make sure that it doesnt how FULL post?
<?php get_header(); ?> <?php $count = 0; ?> <?php if (have_posts()) : ?> <div class="fullbox_excerpt"> <div class="fullbox_content"> <h3> <?php single_cat_title(); ?> </h3> <?php while (have_posts()) : the_post(); ?> <?php if($count > 0) { ?> <div class="excerpt_separator"></div> <?php } ?> <div class="excerpt_meta" id="post-<?php the_ID(); ?>"> <div class="excerpt_desc"> <h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2> <?php cutstr($post->post_content, 500); ?> </div> <div class="excerpt_more"> <a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>" class="more-link"><?php _e('READ THE FULL ARTICLE >>', 'theme'); ?></a> </div> </div> <?php $count++; ?> <?php endwhile; ?> </div> <div class="fullbox_footer"></div> </div> <div id="post-navigator"> <?php if (function_exists('wp_pagenavi')) : ?> <?php wp_pagenavi(); ?> <?php else : ?> <div class="alignright"><?php previous_posts_link(__('Newer Entries »', 'theme')); ?></div> <div class="alignleft"><?php next_posts_link(__('« Older Entries', 'theme')); ?></div> <?php endif; ?> </div> <?php else: ?> <div class="fullbox"> <div class="fullbox_header"></div> <div class="post_message"><?php _e('Sorry. There are no post available for selected category.', 'theme'); ?></div> <div class="fullbox_footer"></div> </div> <?php endif; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
Also important to note that I removed the name of the theme, and out in the text “theme”, as to not draw the focus off, because I dont believe this to be a theme issue.
Forum: Fixing WordPress
In reply to: how to allow posts to how FULL content and not previewPlease see below post.
Forum: Fixing WordPress
In reply to: how to allow posts to how FULL content and not previewresolved
Forum: Fixing WordPress
In reply to: how to allow posts to how FULL content and not previewThere is no excerpt code only…
<div class="post_content"> <?php the_content(__('READ THE FULL ARTICLE >>',
I am confused. I have reviewed template, per the editor and couldnt find.
Forum: Fixing WordPress
In reply to: Categories vs pages and the headerThank you kindly sir. Issue resolved.
Forum: Fixing WordPress
In reply to: Navigation Bar shows categoriesI looked and there is no such option.