Kashif Rafique
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Trying to reduce the height of the headerYou can replace the title and site description (text) with a logo (image) easily from the customize section.
- Uncheck the Display Header Text. It will hide the title and site description
- Upload your logo by clicking the Add logobutton
Please see this image for better understanding.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Infinite Scroll supportCan you try the following settings:
- Navigation Selector:
.pagination - Next Selector:
.pagination a.next - Item Selector:
article.b-post - Content Selector:
#blog-item-holder
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Infinite Scroll supportCan you share screenshot of YITH Infinite Scrolling setting page?
Forum: Fixing WordPress
In reply to: post title problemA quick fix is to set the
directionof post title toright to left. By default direction of post title isleft to right. You can do it by using the following CSS code:.post header h1 { direction: rtl; }Don’t edit the theme files directly, otherwise your changes will be overwritten whenever the theme is updated.
An easy way to add custom CSS is to install the Jetpack plugin and activate the Custom CSS module. You’ll then add your custom CSS in the new stylesheet editor that’ll appear in your dashboard, under Appearance > Edit CSS.
As alternatives, you could either install a standalone custom CSS plugin, or create a child theme.
Forum: Fixing WordPress
In reply to: Trying to reduce the height of the headerPardon me, but I didn’t understand your point. Do you want to swap the position of logo and site description so site description will come first and logo will be under the site description?
Forum: Fixing WordPress
In reply to: Trying to reduce the height of the headerTry this code:
@media screen and (min-width: 61.5625em) .site-header { padding: 2.625em 7.6923%; }Forum: Fixing WordPress
In reply to: Trying to reduce the height of the headerCan you share the link of your website? It will make it easier to suggest the right solution quickly.
Forum: Fixing WordPress
In reply to: removing header and footerGlad to help you.
Adding a custom menu to only this page may require custom coding. How comfortable are you with php, html and css?
Forum: Fixing WordPress
In reply to: Add Infinite Scroll supportI saw your other thread on the same topic and also posted there. You can choose an option that is more appropriate and fulfill your need.
After installation and connecting with your WordPress.com account, you also need to enable and configure the Infinite Scroll. If you don’t have WordPress.com account, then you can get a free account.
Configure infinite scroll
Borrowing from jetpack infinite scroll page:Most themes nowadays have Infinite Scroll support built in already! To check to see if your theme supports Infinite Scroll, simply activate the Infinite Scroll module under Jetpack -> Settings and check that “Scroll Infinitely” is checked under Settings -> Reading.
You can add the infinite scroll support in your theme by adding following piece of code in the functions.php file of your active theme:
add_theme_support( 'infinite-scroll', array( 'container' => 'content-holder', 'footer' => 'page', ) );Please take a backup of your theme directory or at least functions.php file before editing the functions.php file.
Forum: Plugins
In reply to: [YITH Infinite Scrolling] Infinite Scroll supportYou need to configure this plugin with precise information, otherwise it will not work. Try to locate the following information:
- Navigation Selector
- Next Selector
- Item Selector
- Content Selector
Forum: Fixing WordPress
In reply to: Remove Space Where Title WasA little correction here @imauser78:
If you are already using:
.td-post-title { display: none; }then, you don’t need to use this code:
.entry-title, .entry-title a { display: none; }as
.entry-title, .entry-title ais a child of.td-post-title. Hiding the parent element will also hide all of its children.Forum: Fixing WordPress
In reply to: Remove Space Where Title WasGlad you make it working as per your liking. You can fix the little gap between the post and page easily. The post’s wrap area is 8px higher than the page wrap area. You can make both same by using this code:
.td-main-page-wrap { padding-top: 40px; }Forum: Fixing WordPress
In reply to: Unable to access dashboardGlad to help you. 🙂
Forum: Fixing WordPress
In reply to: Remove Space Where Title WasIn addition to the previous code, put following code
.td-crumb-container { display: none; }The above code will remove most of the white space. If you want to remove all the white space, then use this code:
.td-post-header { display: none; }Forum: Fixing WordPress
In reply to: Add Infinite Scroll supportDid you try Jetpack?