saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Alante] Change font/colour of text on slider imagesHello cbeebie,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#slider .featured-excerpt span, #slider .featured-title span { color: #17C5EA; } #slider .featured-title { margin-top: 200px; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [GeneratePress] Centering page titleHello fahimscirex,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.page-title { text-align: center; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Tonic] Mobile top menu cuts off my head in banner photoHello curtwalton,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
@media(max-width: 768px) { #header-wrap { background-position-y: 50px; } }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Sydney] Facebook logo in top menu?Hello sec55,
In the main menu, For facebook menu you have to add
fa fa-facebook
class to show facebook icon. Currently,fab fa-facebook
class is added so facebook icon is not displaying.Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Gillian] Search Button removeHello maryknight,
You can hide it with 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.
.header-search { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Bizplan] Remove search from menuHello vegpa,ck,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.site-header .header-bottom-right .search-icon{ display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Corporate Club] Position of the logoHello drica100,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.site-branding { width: 80%; margin-bottom: 13px; } .header-layout-1 .right-head { width: 15%; } .header-layout-1 #main-nav { float: left; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Infinite Photography] Menu Problem@kiwihawk If this solution works for you, can you please mark it as resolved.
Forum: Themes and Templates
In reply to: [financeup] How to delete copyright of theme ansar in footerHello skundu137a,
You have to edit footer.php file located at wp-content/themes/your-current-active-theme. In footer.php file find
<p>© <?php echo esc_html(date('Y')).' '; bloginfo( 'name' ); ?> | <?php printf( esc_html__( 'Theme by %1$s', 'financeup' ), '<a href="'.esc_url('https://www.themeansar.com').'" rel="designer">Theme Ansar</a>' ); ?></p>
and replace it with<p>© <?php echo esc_html(date('Y')).' '; bloginfo( 'name' ); ?> </p>
.Note : All Changes you done in footer.php or other file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Infinite Photography] Menu ProblemHello kiwihawk
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.header-wrapper .main-navigation ul ul.sub-menu { top: 40px; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Storefront] Secondary Menu AlignmentHello computermedic,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.storefront-secondary-navigation.woocommerce-active .site-header .secondary-navigation { float: right; } @media(max-width: 767px) { .storefront-primary-navigation { display: block !important; } button.menu-toggle { background: #0c0b0b !important; color: #fff; } .main-navigation ul li a, .site-title a, ul.menu li a, .site-branding h1 a, .site-footer .storefront-handheld-footer-bar a:not(.button), .handheld-navigation .dropdown-toggle { color: #121111 !important } }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Stout] how to remove this from the theme?Hello recreostudio,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
Currently, that blank section shows page title, but some reason CSS not applied, If you don’t want to hide that section and want to show page title then use below CSS code.
.hero { background: #0a0a0a; }
If you want to hide that section use below CSS code.
.hero { display: none; } .site-content { margin-top: 6em; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Brigsby] Remove underline from page titlesHello klakared,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
#loop-meta.pageheader-bg-default::after, #loop-meta.pageheader-bg-incontent::after, #loop-meta.pageheader-bg-none::after { display: none; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Kokoro] Spacing of post categoriesHello borammie,
Try below css code.
.post-header { height: 100px; } .single-post .entry-date { margin-left: 15px; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [bizpoint] Remove Spacing on HomepageHello patrickyo,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.bp-section { padding: 0; }
Hope this will helps you.
Thanks.