Forum Replies Created
- AuthorPosts
Themonic-Support
KeymasterJust checked your site again, it seems you are using the child theme and there is old CSS present in child theme -> style.css, the CSS inside your child theme is overriding, remove that and if still not work then try using CSS in child theme instead of customizer.
Themonic-Support
KeymasterI have just updated the code inside the CSS guide, check it out and let me know.
Themonic-Support
KeymasterNot via theme control panel, but I have written the CSS needed for doing this already for a previous request.
Refer this page
Themonic-Support
KeymasterHi,
Try this
.site-content { border: none; } .wrapper { border: none; }
To remove article separation line below article
.site-content article { border-bottom: none; }
Themonic-Support
KeymasterYou can hide that by using the following CSS in Additional CSS section
.site-content nav { display: none; }
In the functions.php bottom you have to paste the following code for infinite scroll to work:
function iop_infinite_scroll_init() { add_theme_support( 'infinite-scroll', array( 'type' => 'scroll', 'container' => 'content', ) ); } add_action( 'after_setup_theme', 'iop_infinite_scroll_init' );
Themonic-Support
KeymasterTheme has integrated support for Infinite scroll via Jetpack plugin. Disable theme pagination to get default pagination and then enable Infinite scroll from Jetpack settings.
Themonic-Support
KeymasterYes, via https://wordpress.org/plugins/amp/ or https://wordpress.org/plugins/accelerated-mobile-pages/
Please note that we do not provide support for these plugins.
Themonic-Support
KeymasterHi,
Paste in Customizer -> Additional CSS
.read-more a { color: #f30808; }
For hex color codes, check out https://www.google.com/search?q=hex+color
Themonic-Support
KeymasterYou can disable theme pagination easily from theme settings if you think this is theme related. Theme doesn’t provide the category description, you can write or erase category description by going to WordPress category settings. You can further control indexing via robots.txt , you can deny allow Google indexing bot as per your choice.
Themonic-Support
KeymasterChild theme available in the member area is a Starter child theme, it does nothing by itself, it is meant to be build upon and to keep modifications separate from parent theme.
Refer: https://developer.wordpress.org/themes/advanced-topics/child-themes/
- AuthorPosts