Few Problems with Appearence
-
Greeting friends, I have a few issues.
1. Can I change the colour(Greyish Blue colour to white) of my Footer Widget area?
also how do i get this booking search box in the middle?2. Can I increase the width of my sidebar widget and can I change the border colours?
Thankyou
-
Hello,
Please give your site URL.
trippindian.com this is the site url.
1) For change the color(Greyish Blue color to white) of Footer Widget area and booking search box in the middle use below CSS –
.enigma_footer_widget_area { background: #fff; } .enigma_footer_widget_column .textwidget { text-align: center; }2) For increase width of sidebar and change the color of sidebar use the below CSS –
.enigma_sidebar_widget { padding: 0px 5px 15px 5px; } .enigma_sidebar_widget_title { background: #931c46; } .enigma_sidebar_widget { border-left: 3px solid #931c46; border-right: 3px solid #931c46; border-bottom: 3px solid #931c46; } .enigma_sidebar_widget { box-shadow: 0 0 6px rgb(160, 59, 93); }Hi, Thanks for the reply the script for Footer Widget is working but the scrip for side bar widhet is not working.
If it’s not working then paste the below CSS at the bottom of the style.css
.enigma_sidebar_widget { padding: 0px 5px 15px 5px; } .enigma_sidebar_widget_title { background: #931c46; } .enigma_sidebar_widget { border-left: 3px solid #931c46; border-right: 3px solid #931c46; border-bottom: 3px solid #931c46; } .enigma_sidebar_widget { box-shadow: 0 0 6px rgb(160, 59, 93); }Hi, This script is also not working
.enigma_footer_widget_column .textwidget {
text-align: center;
}If I edit my style.css will it harm my website?
If your CSS is not working after adding it in custom CSS box then you can put it into the style.css and it’s not harmful for your website.
-
This reply was modified 9 years, 3 months ago by
weblizar_support.
Hi, I was able to change the footer area colour to white but the widget is still alinged to the left. I want it in the center
Here is the website link please check it https://trippindian.com/
I have pasted the script in style.css still i am not able to change the sidebar widget background colour and widht
-
This reply was modified 9 years, 3 months ago by
trippindian.
Please,
1) Open your enigma-parallax theme folder. Open footer.php See the code at line no 6
<div class="row"> <?php if ( is_active_sidebar( 'footer-widget-area' ) ){ dynamic_sidebar( 'footer-widget-area' ); } else { $args = array( 'before_widget' => '<div class="col-md-3 col-sm-6 enigma_footer_widget_column">', 'after_widget' => '</div>', 'before_title' => '<div class="enigma_footer_widget_title">', 'after_title' => '<div class="enigma-footer-separator"></div></div>' ); the_widget('WP_Widget_Pages', null, $args); } ?> </div>replace this with the below code –
<div class="row"> <?php if ( is_active_sidebar( 'footer-widget-area' ) ){ dynamic_sidebar( 'footer-widget-area' ); } else { $args = array( 'before_widget' => '<div class="col-md-12 col-sm-6 enigma_footer_widget_column">', 'after_widget' => '</div>', 'before_title' => '<div class="enigma_footer_widget_title">', 'after_title' => '<div class="enigma-footer-separator"></div></div>' ); the_widget('WP_Widget_Pages', null, $args); } ?> </div>2) In your enigma-parallax open function.php Go to line no 295 see the code –
register_sidebar( array( 'name' => __( 'Footer Widget Area', 'enigma-parallax' ), 'id' => 'footer-widget-area', 'description' => __( 'footer widget area', 'enigma-parallax' ), 'before_widget' => '<div class="col-md-3 col-sm-6 enigma_footer_widget_column">', 'after_widget' => '</div>', 'before_title' => '<div class="enigma_footer_widget_title">', 'after_title' => '<div class="enigma-footer-separator"></div></div>', ) );replace this code with the below code –
register_sidebar( array( 'name' => __( 'Footer Widget Area', 'enigma-parallax' ), 'id' => 'footer-widget-area', 'description' => __( 'footer widget area', 'enigma-parallax' ), 'before_widget' => '<div class="col-md-12 col-sm-6 enigma_footer_widget_column">', 'after_widget' => '</div>', 'before_title' => '<div class="enigma_footer_widget_title">', 'after_title' => '<div class="enigma-footer-separator"></div></div>', ) );Hope this will helps you.
-
This reply was modified 9 years, 3 months ago by
weblizar_support.
-
This reply was modified 9 years, 3 months ago by
The topic ‘Few Problems with Appearence’ is closed to new replies.
