Tagged: 

Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #400023

    Hi,

    I’m having an issue with the portfolio grid not showing the categories to be selected. It is essentially a blank space. See below.

    Missing categories

    You can view this by going to the homepage (or HOME – backend) and view the portfolio element.

    Thanks.

    sl

    • This topic was modified 9 years, 2 months ago by slui.
    #400238

    Hey slui!

    You have to have some categories created for them to display. You can create them in Dashboard > Portfolio Items > Portfolio Categories. I went ahead and created one for you.

    Best regards,
    Elliott

    #400785

    Thanks. Do you know if it is possible to put the Title of the post in the center of the image instead of below using portfolio element?

    #401078

    Hey Samuel!

    Try adding this code to the Quick CSS:

    .grid-sort-container .grid-content {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 40%;
        z-index: 1000;
    }
    
    .grid-sort-container .avia-arrow{
        display: none;
    }

    Cheers! 
    Josue

    #401936

    Thanks Josue,

    How would I isolate this to the portfolio on the home page? I know that custom css classes can be used. Can you shed some light on this?

    sl

    #401938

    I should also add that the .avia-arrow still shows when I move the mouse off the caption. I tried implementing the following and it didn’t work.

    .grid-sort-container .avia-arrow{
    display: none !important;
    }

    #402076

    Hey!

    Yes, you can apply a specific class and change the code accordingly:

    .home-grid .grid-content {
        position: absolute;
        top: 50%;
        left: 0;
        right: 0;
        margin: 0 auto;
        width: 40%;
        z-index: 1000;
    }
    
    .home-grid .avia-arrow{
        display: none;
    }

    Regarding the arrow, i’m not really seeing (http://screencast.com/t/2qdB7xR5qJsX) i’d suggest hiding the overlay though.

    .home-grid .image-overlay{
    display: none !important;
    }

    Cheers!
    Josue

Viewing 7 posts - 1 through 7 (of 7 total)
  • You must be logged in to reply to this topic.