For #3 as well,I would like to increase the width of the columns to accommodate the text.
Hi..
Please go to Admin Dashboard >> Appearance >> Theme Options >> Theme General Settings.
Now copy below code and paste into Custom CSS Editor.
1)
.head-contact-info li {
font-size: 20px !important;
}
Here you can replace 20px as per your choice.
2)
.navbar-collapse {
margin-top: 15px !important;
margin-bottom: 15px !important;
}
Here you can replace 15px as per your choice.
3) Please make a child theme and create a home-services.php file.
Now copy code from LINK and paste into child theme’s home-services.php file.
4)
.enigma_service {
padding-bottom: 0px !important;
}
5)
.enigma_footer_widget_column {
margin-bottom: 0 !important;
}
6) Please explain how to modify the banner.
Save the changes.
Thanks.
This is very helpful, thank you so much! Just need to figure out how to create a child theme and I’ll be good to go! Also, since this a responsive theme, is there a way to edit the mobile view? Not really happy with the size of the content display, etc. Is there help topics on that someplace? If you pull up the site on mobile, you can see what I’m referring to. Thank you again, very helpful!!
I got everything working properly but wonder if there is a way for the services area to be widened that way the two areas are equal distance apart and the text isn’t so crammed in. It looks fine on mobile they way it is. Thanks.
Hi..
is there your issue resolved ?
Hi,
Yes, my original issue was resolved. Should I start a new thread about the mobile view issues or can you address them here? Thank you.
Hi..
Please tell me what issues are arise in mobile view in theme.
Thanks.
This is what it looks like on my mobile phone and everyone else who has seen the page: https://www.dropbox.com/s/wx7m3fb8zzonxua/File%20Mar%2011%2C%2011%2006%2002%20PM.png?dl=0
I would like it to fill the screen if possible. Everything else I’m happy with!
Thanks so much!
Hi..
Please add below css into Custom CSS Editor.
.enigma_footer_widget_column .textwidget {
margin-right: 0 !important;
}
Save the changes.
Thanks.
It’s strange, it does it when you first bring up the browser, then it resets to the same 1/2 screen again.
Also for the regular web page, is there a way to space out the services a bit more or make the columns wider?
Hi..
Please add below css into custom css editor.
.head-contact-info li a {
word-wrap: break-word !important;
}
Save the changes.
Thanks.
That worked, thank you. Now, how do I decrease the size of the font for the email address on the mobile view without messing up what I have already corrected on the main website? Thank you again for being such a sanity saver!
Hi..
Please add below css into custom css editor.
.head-contact-info li {
font-size: 25px;
}
@media(max-width:480px){
.head-contact-info li {
font-size: 15px !important;
}
}
You can change font size according to your choice.
Save the changes.
Thanks.