• Resolved kgsmama28

    (@kgsmama28)


    Hi, Newbie here. Just set-up my first website and have a few things that I would like to customize, however I can’t seem to figure out how to make these changes or if they are possible without screwing up the code.
    1. Increase the size of the font of the e-mail address/phone number.
    2. Minimize the size of the white space in the menu a tad…it’s too wide right now.
    3. I only want to feature 2 services (the about us and company history) can we center them or make them equal width apart?
    4. Would also like to minimize the white space under the services as well.
    5. Minimize the height of the dark blue box.
    6. This is a plug-in for the banner, how can I modify the width of that? Do I contact the developer for that plug-in?

    Any help you can provide would be much appreciated!
    http://sandbox.leonsealcoatingservices.com/

    Thank you!

Viewing 15 replies - 1 through 15 (of 16 total)
  • Thread Starter kgsmama28

    (@kgsmama28)

    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.

    Thread Starter kgsmama28

    (@kgsmama28)

    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!!

    Thread Starter kgsmama28

    (@kgsmama28)

    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 ?

    Thread Starter kgsmama28

    (@kgsmama28)

    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.

    Thread Starter kgsmama28

    (@kgsmama28)

    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.

    Thread Starter kgsmama28

    (@kgsmama28)

    It’s strange, it does it when you first bring up the browser, then it resets to the same 1/2 screen again.

    Thread Starter kgsmama28

    (@kgsmama28)

    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.

    Thread Starter kgsmama28

    (@kgsmama28)

    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.

    Thread Starter kgsmama28

    (@kgsmama28)

    Thank you!!

Viewing 15 replies - 1 through 15 (of 16 total)

The topic ‘Main Page Theme Options’ is closed to new replies.