-
AuthorPosts
-
January 14, 2016 at 4:42 pm #746549
Hi – Love the theme and cornerstone. It’s great to work with. I have just downloaded and installed the theme and plugins so assume it is the latest version.
I’ve looked through the forums but am struggling to remove some padding or margins that are set in my design on this page http://www.adamhackney.com/WLSSA/
The areas I’d like removed are the spaces I have highlighted green with the attached padding.jpg.
I have set the section and element top margins to 0 but the columns still seem to have spacing there.
Thanks for your help
January 14, 2016 at 8:19 pm #746781Hi there,
Thanks for writing in! When you’re adding heading tags (http://snag.gy/LOstn.jpg), you can assign the class “mtn” to your elements to remove the space (check this example). Please refer to our element spacing guide for more information (https://community.theme.co/kb/element-spacing/).
Also you can add this under Custom > CSS in the Customizer.
.home .x-promo { margin-bottom: 0; }
Hope that helps.
January 15, 2016 at 12:34 am #747146Thanks that worked perfectly
I’m stuck on another css issue though.
I cant seem to remove the grey borders around the widgets in the footer.
Any suggestions
Thanks
AdamJanuary 15, 2016 at 12:37 am #747152Hi Adam,
Thanks for updating the thread! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.
.widget ul, .widget ol { border: none; }
If you want to remove the bottom borders on the list items, you can also add the following CSS.
.widget ul li, .widget ol li { border: none; }
Hope this helps – thanks!
January 15, 2016 at 2:06 am #747238You’re a great help thanks
One more CSS issue. I changed the colour of the footer and it appears there are more grey borders and some dashed borders around the social media icons.
How do I remove those?
Thanks
January 15, 2016 at 2:15 am #747248Hello Again,
To remove the dash lines in the social media icons in your footer, please add the following css code in the customizer, Appearance > Customize > Custom > CSS or insert this code in your child theme’s style.css
#lsi_widget-2 .lsi-social-icons li, #lsi_widget-2 .lsi-social-icons li a { box-shadow: none; text-decoration: none; border: none !important; }
Hope this helps.
January 15, 2016 at 3:43 am #747349Amazing support thankyou
January 15, 2016 at 4:15 am #747382You’re welcome! 🙂
January 16, 2016 at 11:09 pm #749466Great Support again thanks
My site needs to have a google translator on it and I would like it to appear to the left of the nav bar menu at the top of the page.
To display the translator plugin I just need the shortcode [GTranslate]
How would I get this to appear to the left of the menu?
Thamks
January 17, 2016 at 1:05 am #749525Hello There,
Thanks for updating this thread!
Because what you are trying to accomplish requires a template customization, we would like to suggest that you use a child theme. This allows you to make code changes that won’t be overwritten when an X update is released. After your child theme is setup, please review how we recommend making template changes in Customization Best Practices.
Once you already have your child theme active and ready, please insert this following code in your child theme’s functions.php file.
function add_gtranslate_nav_item( $items, $args ) { if ( $args->theme_location == 'primary' ) { $items .= '<li class="menu-item x-menu-item x-menu-item-gtranslate">'; $items .= do_shortcode( '[GTranslate]'); $items .= '</li>'; } return $items; } add_filter( 'wp_nav_menu_items', 'add_gtranslate_nav_item', 9999, 2 );
And then please add the following css code in the customizer, Appearance > Customize > Custom > CSS
.x-navbar .desktop .x-nav > li > a.gflag { display: inline-block; height: auto !important; padding: 0; margin: 0 4px; margin-top: 43px; border: none; }
We would loved to know if this has work for you. Thank you.
January 24, 2016 at 9:15 pm #762185Thanks it did work as asked 🙂
January 24, 2016 at 11:53 pm #762373You’re welcome!
January 27, 2016 at 4:48 am #766589This reply has been marked as private.January 27, 2016 at 5:02 am #766604This reply has been marked as private.January 27, 2016 at 7:44 am #766803Hi there,
Upon checking FTP files, I noticed you placed x folder inside another x folder. Please check this path in your FTP :
/public_html/wp-content/themes/x/x
.You should move x folder to
/public_html/wp-content/themes/x
Hope it helps.
-
AuthorPosts