shisana
Forum Replies Created
-
Forum: Plugins
In reply to: [Easy Google Fonts] Help on CSS selectorThanks cataphor
In fact; I had already tried some of the methods explained in video and posts.But codes in theme is some what different.
This is what i am getting when copying css selector with Inspect element ; which is not true for this plugin.div.post-content > div.entry.clearfix > ul:nth-child
div.post-content > div.entry.clearfix > ol:nth-child
I will start learning in detail about inspecting elements and php coding positively from now,But if somebody knew it pls help me at least for now .
ThanksForum: Themes and Templates
In reply to: I want to remove footer creditThanks Michael,
That was a mistake, i checked in footer
<?php
/**
* The template for displaying the footer and closing elements starting in header.php
*
* @package Today WordPress Theme
* @author Alexander Clarke
* @copyright Copyright (c) 2015, WPExplorer.com
* @link https://www.wpexplorer.com
* @since 1.0.0
*/ ?></div><!– .wpex-site-content –>
<?php get_template_part( ‘partials/layout-footer’ ); ?>
</div><!– .wpex-site-wrap –>
<?php get_template_part( ‘partials/global/scrolltop’ ); ?>
<?php wp_footer(); ?>
</body>
</html>And found another file ‘layout-footer.php’ (partials/layout-footer.php)
Here is the code in that file.<?php
/**
* Footer Layout
*
* @package Today WordPress Theme
* @author Alexander Clarke
* @copyright Copyright (c) 2015, WPExplorer.com
* @link https://www.wpexplorer.com
* @since 1.0.0
*/// Exit if accessed directly
if ( ! defined( ‘ABSPATH’ ) ) {
exit;
}$has_footer_widgets = wpex_has_footer_widgets(); ?>
<?php get_template_part( ‘partials/footer/ad’ ); ?>
<footer class=”wpex-site-footer-wrap wpex-clr”>
<div class=”wpex-site-footer wpex-container wpex-clr”>
<?php if ( $has_footer_widgets ) : ?>
<?php get_template_part( ‘partials/footer/widgets’ ); ?>
<?php endif; ?>
<?php if ( get_theme_mod( ‘footer_copyright’, true ) ) : ?>
<div class=”wpex-footer-bottom<?php if ( $has_footer_widgets ) echo ‘ wpex-has-footer-widgets’; ?>”>
<?php get_template_part( ‘partials/footer/copyright’ ); ?>
</div><!– .wpex-footer-bottom –><?php endif; ?>
</div><!– .wpex-site-footer –>
</footer><!– .wpex-site-footer-wrap –>