seyiobasi
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [zAlive] height of the top navigation bar.Amazing. Thanks so much ??
Forum: Themes and Templates
In reply to: reduce width of search boxworked perfectly. thanks a whole bunch
Forum: Themes and Templates
In reply to: Reduce site width sizeAmazing. it worked! Thank you so much
But now the search button seems too long.
How can I reduce the length of the search button?Forum: Themes and Templates
In reply to: Reduce site width sizeOh, thanks a lot Bojan. I will do just that.
True it reduces but leaves another problem. See attached image
how do i now reduce the width of the post content and maintain the width of the sidebar at the same time. Ans also reduce the width of the search box too. see the page here: https://www.severalstreamsofincome.comThanks so much
Forum: Themes and Templates
In reply to: Reduce site width sizehello, i added the code and i dont think the site width changed at all. see the site here: https://www.severalstreamsofincome.com
is there any other code i can try?
Forum: Themes and Templates
In reply to: Reduce site width sizethanks. i will do this and get back
Forum: Fixing WordPress
In reply to: my pages have numbeted list on themThis link below shows a sample post with bullet lists not showing. numbers dont show either
https://www.mycareeradviser.com/test-post/Forum: Fixing WordPress
In reply to: using page editor to add pagesSorry. I use the pytheas theme – wordpress theme
Forum: Fixing WordPress
In reply to: my pages have numbeted list on themThank you so much. it worked. Coincidentally, numbered lists do not show up on my published posts though i see them on preview. Would you know the code to fix this? Thanks again for your help
Forum: Fixing WordPress
In reply to: my pages have numbeted list on themi will try it. thanks
Forum: Fixing WordPress
In reply to: Numbers list showing on pageslink
this is the link to my siteForum: Fixing WordPress
In reply to: Numbers list showing on pagesForum: Fixing WordPress
In reply to: single.php errorThanks a bunch Anshu, it worked. page is now showing. However I now have my posts and pages numbered. and some mumbled wordings as well. see page at for example.
also see post exceprt. the date and comments wordings seems muddled. that was what i was trying to fix before i messed up with the codes. can you help?
Forum: Fixing WordPress
In reply to: single.php errorThanks. will try this and revert.
how exactly do i use the backticks when inputing codes?Forum: Fixing WordPress
In reply to: single.php errorHello,
Thanks. Tried the code. still blank. Below is everything on the single.php code. Please check if you notice anything
<?php /** * The Template for displaying all single posts. * * @package WordPress * @subpackage Pytheas * @since Pytheas 1.0 */ get_header(); ?> <?php while ( have_posts() ) : the_post(); ?> <header class="page-header"> <h1 class="page-header-title"><?php the_title(); ?></h1> <nav class="single-nav clr"> <?php next_post_link('<div class="single-nav-left">%link</div>',<i class="icon-chevron-left">, '</i>’, false); ?> <?php previous_post_link('<div class="single-nav-right">%link</div>','<i class="icon-chevron-right">’,'</i>’, false); ?> </nav><!-- .page-header-title --> </header><!-- .page-header --> <div id="primary" class="content-area span_16 col clr clr-margin"> <div id="content" class="site-content" role="main"> <?php if ( !post_password_required() ) { ?> <ul class="meta single-meta clr"> <li><i class="icon-time"></i><?php echo get_the_date(); ?></li> <li><i class="icon-folder-open"></i><?php the_category(' / '); ?></li> <?php if( comments_open() ) { ?> <li class="comment-scroll"><i class="icon-comment"></i> <?php comments_popup_link(__('Comment', 'wpex'), __('1 Comment', 'wpex'), __('% Comments', 'wpex'), 'comments-link', __('Comments closed', 'wpex')); ?> <?php } ?> <li><span class="icon-user"></span><?php the_author_posts_link(); ?></li> <!-- .meta --> <?php get_template_part('content', get_post_format() ); ?> <?php } ?> <article class="entry clr"> <?php the_content(); ?> </article><!-- /entry --> <?php wp_link_pages( array( 'before' => '<div class="page-links clr">', 'after' => '</div>', 'link_before' => '<span>', 'link_after' => '</span>' ) ); ?> <?php if ( of_get_option('blog_tags', '1' ) =='1' ) : ?> <?php the_tags('<div class="post-tags clr">','','</div>'); ?> <?php endif; ?> <?php if ( of_get_option('blog_bio', '1' ) == '1' && get_the_author_meta( 'description' ) ) : ?> <?php get_template_part( 'author-bio' ); ?> <?php endif; ?> <?php if ( of_get_option('blog_related', '1' ) == '1' ) { ?> <?php get_template_part( 'content', 'related-posts' ); ?> <?php } ?> <?php comments_template(); ?> </div><!-- #content --> </div><!-- #primary --> <?php endwhile; ?> <?php get_sidebar(); ?> <?php get_footer(); ?>
thanks again