Homepage issues

Discussion in 'Foogo Pro WordPress Theme' started by rexmanaster, Sep 2, 2016.

  1. rexmanaster

    rexmanaster Member

    Joined:
    Feb 18, 2012
    Messages:
    180
    Likes Received:
    4
    Please see attached screenshot that corresponds with the questions below:

    1. How can I change the active/hover background color and transparency on the main navigation menu?

    2. How can I change the active/hover and inactive font color on the main navigation menu?

    3. How can I remove the 4(?) non-visible columns in the Home Feature area so that only the "Add New" content displays?

    4. How can I hide the homepage section that by default includes "Latest News" and a search box?
     

    Attached Files:

  2. priya

    priya Guest

    Hi,

    Greetings from InkThemes!

    Could you please provide us 'URL' of your site so that we can better assist you?

    Looking forward to your reply.

    Thanks & Regards!
    Priyanka
    InkThemes.com
     
  3. priya

    priya Guest

    Hello, Rex..

    Solutions to your above issues are given below accordingly, you just need to Please paste the code given below in Custom CSS field of your dashboard...

    1) How can I change the active/hover background color and transparency on the main navigation menu?
    Code is given below..
    Code:
    #menu .ddsmoothmenu li a:hover {
        background: black;
    }
    2) How can I change the active/hover and inactive font color on the main navigation menu?
    Code is as follow..

    Code:
    #menu .ddsmoothmenu li a {
        color: red;
    }
    #menu li a:hover {
        color: blue !important;
    }

    3) How can I remove the 4(?) non-visible columns in the Home Feature area so that only the "Add New" content displays?


    Code:
    #content_wrapper #site_features ul li {
        padding-left: 155px;
        margin-right: 92px;
        width: 40%;
    }
    4) How can I hide the homepage section that by default includes "Latest News" and a search box?

    You can do it from widget option of your dashboard..

    You just need to drag and drop the text field in widget areas Dashoboard=>Appearance=>Widget=> Footer Widget Areas and put your content over there.

    And if you want to completely remove that section, please paste the code given below in Custom CSS field of your dashboard.
    Code:
    #footer {
        display: none;
    }

    Thanks & Regards!
    Priyanka
    InkThemes.com
     

Share This Page