Removing filters/categories in Porfolio

Home Forums Revelance WordPress Theme Removing filters/categories in Porfolio

This topic contains 5 replies, has 2 voices, and was last updated by  ab-themes 8 years, 3 months ago.

Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #13419

    tarasilver
    Participant

    Hey! The client is asking if it is possible to remove the filters/categories: 1) the boxes above the portfolio boxes and 2) from appearing on top of the portfolio boxes when you hover – is that possible? http://starburstdesigns.com/silverstrategy.com/#case-studies

    Thanks!

    #13421

    ab-themes
    Keymaster

    Hi,

    the simple way is to hide filters.

    In your style.css file at line 2278 you have this code:

    #filters {
        list-style: none;
        margin: 0;
        text-align: center;
        margin-bottom: 30px;
    }

    Replace that code with this:

    
    #filters {
        list-style: none;
        margin: 0;
        text-align: center;
        margin-bottom: 30px;
        display: none;
    }

    We recommend this method because sometimes you might want to come back that filters(just remove display:none;).

    For hover please go to your portfolio_shortcode.css file
    (you can find it here wp-content/plugins/abdev-portfolio/css/),
    on line 48 you have this code:

    .ab_latest_portfolio figure figcaption, .ab_latest_portfolio figure a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
    }

    Replace it with this:

    .ab_latest_portfolio figure figcaption, .ab_latest_portfolio figure a {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        display: none;
    }

    Kind regards

    #13446

    tarasilver
    Participant

    The first part worked perfectly – thank you so much!

    For the second part, we still want it to say the client name, but not the filters – is that possible?? When I used the code you sent it removes the name of the portfolio item as well.

    Thanks!

    #13447

    ab-themes
    Keymaster

    Hi,

    if we understand you well, you just want on hover to shows portfolio item.

    For that just paste this code in your portfolio_shortcode.css file

    figure p{
    	display: none !important;
    }
    

    Kind regards

    #13682

    tarasilver
    Participant

    Woohoo, You’re the best!!! Thanks!

    #13692

    ab-themes
    Keymaster

    No problem, we are happy when you are happy :)

    Cheers

Viewing 6 posts - 1 through 6 (of 6 total)

The topic ‘Removing filters/categories in Porfolio’ is closed to new replies.