csthemes
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Sensilla] Top navigation bar and full-width pagesThanks for using our theme Chris. We are going to release new version shortly (hopefully next week) that will address several issues including yours.
Cheers!
Forum: Themes and Templates
In reply to: [Pieces] Call to undefined function is_multi_author()What your WordPress version? is_multi_author() is a function introduced in WordPress 3.2. There should be no problem if you have an updated WordPress install.
Forum: Themes and Templates
In reply to: [Morphic] double date formatThe version with double date issue fix is live now, feel free to make an update.
Thank you!
Forum: Themes and Templates
In reply to: [Morphic] double date formatWe have addressed the double post date issue in the next version of the theme, which will be available soon.
Forum: Themes and Templates
In reply to: [Morphic] date formatThe 2 dates are:
– publish date
– update/modify dateIt should be styled differently. But we will simply remove the modify date on the next theme update.
Forum: Themes and Templates
In reply to: [Morphic] No-sidebar-pageCreate a new template file ‘no-sidebar-page.php’ with the following codes:
<?php /** * Template Name: Full Width Page * * The template for displaying full width pages with no sidebar. * * @package Nu Themes */ get_header(); ?> <div class="row"> <main id="content" class="col-xs-12 content-area" role="main"> <?php while ( have_posts() ) : the_post(); ?> <?php get_template_part( 'content', 'page' ); ?> <?php if ( comments_open() || '0' != get_comments_number() ) comments_template(); ?> <?php endwhile; ?> <!-- #content --></main> <!-- .row --></div> <?php get_footer(); ?>
Then add the following codes to the ‘style.css’ file:
body.page-template-no-sidebar-page-php .main-inner { background: #fff; } body.page-template-no-sidebar-page-php .hentry { margin-right: 0; }
Good Luck!
Forum: Themes and Templates
In reply to: [Morphic] Suppress automatic hyphenationOpen the style.css file and look for the following codes:
.entry-content { margin-bottom: 20px; word-wrap: break-word; -webkit-hyphens: auto; -moz-hyphens: auto; -ms-hyphens: auto; hyphens: auto; }
Remove all hyphens related declaration, so it become:
.entry-content { margin-bottom: 20px; word-wrap: break-word; }