A few items...

Discussion in 'Gommero WordPress Theme' started by itzcandy, Mar 7, 2017.

  1. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Please help with the following few items.

    1. I would like to decrease the white space above and below the logo & menu in the header.
    2. I would like to change the color of the bottom widget area.
    3. I would like to change the link color throught the entire website.
    4. I would like to only show 6 testimonials on the home page.
    5. I would like to change the background color of the home page widget area.
    6. I would like to change the background color of the breadcrumbs bar.
    7. The text from my sliders is not showing up.

    This is my site in progress http://greenuplandscape.net/
     
    Last edited: Mar 8, 2017
  2. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    1. you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    .header-wrap {
        padding: 0;
    }
    .header-wrapper {
        padding: 0!important;
    }
    .slider_wrapper {
        margin-top: 5px!important;
    }
    2. you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    .footer_wrapper {
        background: #802c61;
    }
    3. you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    a {   
        color: #064f53;
    }
    4. The below custom CSS code will hide the third options for a testimonial:
    Code:
    .bx-pager .bx-pager-item:nth-child(3) {
        display: none;
    }
    5. Kindly provide the edited screenshots of the concerned area, we'll provide you the exact CSS for the same.

    6. Here is the required code to change the breadcrumbs background:
    Code:
    .breadcrumb-wrapper {   
        background: #e6b7b7;
    }
    7. It's displaying properly, I have just checked.

    Hope you find the above solution helpful,

    Do let me know if you need further assistance.

    I will be glad to assist you.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  3. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    Thank you so much. I am still having an issue with #7, it is not showing up in Chrome in the full site version, only on mobile.

    Here is a screenshot of the section I would like to have a green background on the home page. http://greenuplandscape.net/wp-content/uploads/2017/03/2017-03-08_1537.png

    Can you also tell me how to make the text in the breadcrumbs area white.
     
    Last edited: Mar 8, 2017
  4. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hello Itzcandy,

    I am sorry, I am still unable to get your query #7, please elaborate it a bit more.

    Regarding the breadcrumb text, you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    #crumbs a, #crumbs .current {
        color: #ffffff;
    }
    This will help you to figure it out and resolve the issue(s).

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     
  5. itzcandy

    itzcandy Member

    Joined:
    Dec 13, 2012
    Messages:
    102
    Likes Received:
    2
    I have a few more items please.

    1. How can i remove the home page intro sub-heading.
    2. In some of my menu drop downs are going wide vs. being shown as a list. Landscaping is correct, about us and property maintenance are incorrect.
    3. How do I change the background color and text color of the get started button on the slider? (also the text)
    4. The images in the body of the pages are spreading over into the widget bar to the right.

    On the MOBILE theme.
    5. How do i change the menu bar color?
    6. How do I add a tap to call button?
    7. How do I make the slider image show up larger? Taller to fill up more background space?
    8. When looking at the home page on mobile the titles of the features disappear.
    9. How do I add a title to the mobile menu?
     
  6. Naveen

    Naveen Guest

    Joined:
    Aug 8, 2014
    Messages:
    1,739
    Likes Received:
    64
    Hello,

    1) To remove the sub heading from the caption, you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    .slider_container .carousel-caption .carousel-list{
    display:none;
    }
    2) Could you please allow us to check your site,
    Kindly, share your WordPress admin credentials at [email protected] along with this thread URL:

    WordPress site login URL:
    WordPress admin username:
    WordPress admin password:

    I will check and do the needful.

    3) Again, you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    .slider_container .carousel-caption a {
        color: white;
        }   
        .slider_container .carousel-caption a:hover {
        background: #e08686;
        color: #38ef9a;
        }
    4) Can you please share the link of that page where you are getting this, I will check and let you know the appropriate solution for the same.

    5) you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    .mean-container .mean-bar,
    .mean-container .mean-nav,
    .mean-container .mean-nav ul li a.mean-expand:hover{
        background: #528b28;
    }
    6) Tap to call button would be added at our end because it will require some source code customization.

    7) You can use the full-width layout instead of boxed layout, but if you want the slider to be displayed in full-width in boxed layout then, that will require so many changes in the source code.

    8) you need to paste the below custom CSS code in Dahshboard->InkThemes->Theme Options->Styling settings->Custom CSS field.
    Code:
    @media only screen and (max-width: 480px){
    .feature_content .feature .feature_title {
        color: #333;
    }
    }
    9) It seems you want a title for your mobile menu, that require some source code customization, let us know about this more, we will do it on your site.

    Hope you find the above solution helpful.

    Do let me know if you need further assistance.

    I will be glad to assist you.

    Warm Regards!
    Naveen Kolhe
    InkThemes.com
     

Share This Page