Private: Home › Forums › WordPress Themes › Elvyre – Retina Ready WordPress Theme › remove white space at bottom › Reply To: remove white space at bottom
Hello,
The white line at the bottom is the footer’s copyright container. You can remove it by adding the following CSS code to “Elvyre options -> Appearance – Custom CSS box”:
section.copyright-container {
display: none !important;
}
The excerpt is not meant to be displayed on Portfolio page. You can modify php files in order to get the excerpt working. Go to wp-content/themes/elvyre/ and open the file cpt-portfolio.php in your editor.
To display the excerpt, you can inert the <?php the_excerpt(); ?>
code into the desired place.
For example, to insert the excerpt under text, find the code:
<figcaption>
<a class="title" href="<?php echo $post_url; ?>"><?php the_title() ?></a>
<?php
if (shortcode_exists('ssba') && $portfolio_ssba == '1') {
$shortcode = "[ssba url='{$post_url}']";
?>
<div class="portfolio-item-like"><?php echo do_shortcode($shortcode) ?></div>
<?php } ?>
</figcaption>
Modify the upper code so it looks like the following:
<figcaption>
<a class="title" href="<?php echo $post_url; ?>"><?php the_title() ?></a>
<?php
if (shortcode_exists('ssba') && $portfolio_ssba == '1') {
$shortcode = "[ssba url='{$post_url}']";
?>
<div class="portfolio-item-like"><?php echo do_shortcode($shortcode) ?></div>
<?php } ?>
<?php the_excerpt(); ?>
</figcaption>
The icons are in fact the font which is called iconsfont which is located in wp-content/themes/elvyre/includes. You can try and modify the font and insert the desired icons.
Robert