saurabh.dhariwal
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [einfach] I need to change the width of layoutHello enovatit,
you can increse width by comenting some lines in your style.css (i.e appearance -> editor -> style.css) at line 781
.site { /*width: 90%; max-width: 36rem; max-width: calc(20rem + 12vw); margin: 0 auto;*/ }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Melos] Blank space after Homepage (Featured)Hello diadevasco,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer(i.e customize -> addition css)
.page-id-10 div#content{ display:none; }
Hope this will helps you.
Thanks.
- This reply was modified 6 years, 4 months ago by saurabh.dhariwal.
Hello cher443,
You can try below code for this
function enqueue_parent_styles() { wp_enqueue_style( 'main', get_template_directory_uri() . '/bootstrap.css' ); wp_enqueue_style( 'custom', get_template_directory_uri() . '/mystyles.css' ); } add_action('wp_enqueue_scripts', 'enqueue_parent_styles');
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [ColorWay] Editing the layout of the homepage bannerHello makemytherapysite,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer(i.e customize -> addition css)
.logo img{ float:left; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Di Blog] Change Width Product Price LineHello opencaravan,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
span.woocommerce-Price-amount { display: inline-block; }
Hope this will helps you.
Thanks.
Hello maf3734,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
nav#access { background: #fff; float: right; } .cherry-mega-menu { float:right; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [WP Real Estate] change footer textHello mmathis,
You can change that footer text from footer.php file located at wp-content/themes/wp-real-estate/ directory.
Note : All Changes you done in footer.php file are gone when you update theme. So prefer Child Theme
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [SalesZone] Footer AssistanceHello itnchans,
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__row--columns-2 .footer__col:first-child{ width: 70%; } .footer__row--columns-2 .footer__col:last-child{ width: 30%; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Change Menu Color on Header Image ?@herrs244 If this solution worked, can you please mark it as resolved.
Forum: Themes and Templates
In reply to: [Agama] Footer Widget spacing@alm367 If this solution worked, can you please mark it as resolved.
Forum: Themes and Templates
In reply to: [Fukasawa] remove date from posts@jeroen76 If this solution worked, can you please mark it as resolved.
Forum: Themes and Templates
In reply to: [Fukasawa] Set number of posts@jeroen76 If this solution worked, can you please mark it as resolved.
Hello srg5960,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer.
.sfsi_widget .norm_row { float: none; margin: 0 auto; position: relative !important; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Freddo] Remove Dark Overlay on Slider and Homepage ImagesHello seanavus,
Add below css code into your current active child theme’s style.css file or you can add additional css option in theme customizer
.flexslider .slides li .flexText, .freddoImageOp { background-color: transparent !important; }
Hope this will helps you.
Thanks.
Forum: Themes and Templates
In reply to: [Hestia] Changing the logo when scrollingHello apollohyd,
Add below css code in additional css option in theme customizer.
.navbar-not-transparent .navbar-brand img { padding-left: 100px; width: 100px; }
Hope this will helps you.
Thanks.