kksidell
Forum Replies Created
-
Forum: Plugins
In reply to: [Elementor Addons by Livemesh] Remove taxonomies from hover on post gridThanks, will give it a go.
The notification of your reply went to my spam so I have only just seen this.
Forum: Themes and Templates
In reply to: [Freedom] Remove author, date & taxonomies from postsBrilliant thanks,
Notification went to spam so only just seen this.
Forum: Themes and Templates
In reply to: [Button] Customise Single Posts StylesResolved
Forum: Themes and Templates
In reply to: [Button] Customise Single Posts Styles@lizkarkoski thank you so much for your help, it worked perfectly.
Forum: Themes and Templates
In reply to: [Button] Customise Single Posts StylesThanks @lizkarkoski,
Sorry I am a complete novice for CSS and everything I have managed to acheive for my website is by searching google!
Where do I input this CSS? I had a look through the CSS style sheet etc and couldn’t see anything similar to change to this and there isn’t anything on the single.php like it either.
Thanks,
Karen
Forum: Themes and Templates
In reply to: [Button] Customise Single Posts StylesThanks for your help, I am not sure if I am self hosted but I have found the theme options and in the single post.php file and managed to remove the previous/next post from the post.
Can anyone help me work out which bits of the following code relate to the categories and tags?
<?php
/**
* The template for displaying all single posts.
*
* @package Button
*/get_header(); ?>
<div id=”primary” class=”content-area”>
<main id=”main” class=”site-main” role=”main”><?php while ( have_posts() ) : the_post(); ?>
<?php get_template_part( ‘components/content’, ‘single’ ); ?>
<?php
// If comments are open or we have at least one comment, load up the comment template.
if ( comments_open() || get_comments_number() ) :
comments_template();
endif;
?><?php endwhile; // End of the loop. ?>
</main><!– #main –>
</div><!– #primary –><?php get_sidebar(); ?>
<?php get_footer(); ?>Thanks,
Karen