saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Olsen Light] Post Images not CenteringHello unruffled,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.jetpack-lazy-images-js .jetpack-lazy-image { display: block !important; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Didi Lite] Remove “DATE – admin Leave a comment” infoHello veltman
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.entry-meta { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Dulcet] display menu on mobileHello veltman,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.st-menu ul { background: #fff; } .st-menu ul a { border-right: 1px solid #d1d1d1; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Parabola] Left Justify Second Title?Hello rebeccahaden,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#frontpage #front-text2 { text-align: left; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Kokoro] Spacing of post categoriesHello borammie,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.post-entry-grid .cat, .post-entry-list .cat { background-color: #ffffff; } .post-entry-grid .cat:hover, .post-entry-list .cat:hover { opacity: 1; } .post-entry-grid .cat a, .post-entry-list .cat a { background-color: #be9c62; border-radius: 3px; margin-left: 5px; letter-spacing: 0.1em; padding: 3px 6px; } .post-entry-grid .cat a:hover, .post-entry-list .cat a:hover { opacity: 0.8; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Blog Writer] How to Capitalize First Letters in Menu?Hello capefoxx,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.main-navigation a { text-transform: capitalize; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Shuttle Business] Featured HeaderHello accstra,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#logo img, #logo-sticky img { max-height: 65px; } article.section4.one_fourth .iconmain h4{ font-size: 20px; font-weight: 700; margin-bottom: 5px; letter-spacing: 0.5px; text-transform: capitalize; margin-top: -8px; }
Hope this will helps you.
Thanks.
Forum: Fixing WordPress
In reply to: How to restore functions.php to undo all the changes I have made?Hello hazratnoor,
By your website naming, you are using wpengine hosting server. Wpengine provides backup points, You need to select the specific date time backup point and download it.
Refere: https://wpengine.com/support/restore/
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: padding sidebar or main??Hello vanuden,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#primary-sidebar { margin-top: 115px; } #site-footer #footer-overlay { padding: 30px 0; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Astra] Help deleting white space under headerHello claxius,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.entry-content p { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Abaris] Hiding copyright footerHello jrcampbell,
Add below code into your currently active child theme’s functions.php file or you can create custom plugin for it.
remove_action('abaris_credits', 'abaris_display_credits');
Or you can also hide footer credits by css. Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.footer-bottom p { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Shopper] How to edit text of Search bar in header?Hello jsaded,
Add below code into your currently active child theme’s functions.php file or you can create custom plugin for it.
remove_action('shopper_header', 'shopper_custom_product_search', 35); add_action('shopper_header', 'my_custom_product_search', 35); function my_custom_product_search() { if ( shopper_is_woocommerce_activated() ) { ?> <div class="custom-product-search"> <form role="search" method="get" class="shopper-product-search" action="<?php echo esc_url( home_url( '/' ) ); ?>"> <div class="nav-left"> <div class="nav-search-facade" data-value="search-alias=aps"><span class="nav-search-label"><?php _e( 'All', 'shopper' ); ?></span> <i class="fa fa-angle-down"></i></div> <?php echo shopper_product_cat_select('indent_sub'); ?> </div> <div class="nav-right"> <button type="submit"><i class="fa fa-search"></i></button> </div> <div class="nav-fill"> <input type="hidden" name="post_type" value="product" /> <input name="s" type="text" value="<?php echo get_search_query(); ?>" placeholder="<?php esc_attr_e( 'Search Here...', 'shopper' ); ?>"/> </div> </form> </div> <?php } }
Hope this will helps you.
Thanks.
- This reply was modified 6 years, 10 months ago by saurabh.dhariwal.
Forum: Themes and Templates
In reply to: [Tromax] HeadHello henningmanuel,
You can use Head & Footer Code plugin.
Or
You can use wp_head action to add scripts, css, metas etc. into <head>. Add below code into your current active child theme’s functions.php file or you can create plugin for it.
function my_custom_head_scripts() { ?> <meta name="viewport" content="width=device-width, initial-scale=1"> <script> /** code **/ </script> <?php } add_action( 'wp_head', 'my_custom_head_scripts' );
Hope this will helps you.
Thanks !
Hello mszmszit,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.home .entry-content { font-size : 16px; }
Hope this will helps you.
Thanks !
Forum: Themes and Templates
In reply to: [Hueman] Where do you alter number of posts by pageHello kent-brockman,
You can change setting for show maximum posts on blog page from WordPress Dashboard >> Settings >> Reading
Hope this will helps you.
Thanks !