Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #471556

    Hi there,

    Is it possible to change the number of portfolio items displayed (on desktop/laptop screen) from 10 to unlimited or is this a programming/PHP setting?

    Here’s an example: http://carolinadesignercraftsmen.com/portfolio_entries/2015-show/

    Thank you and all the best,

    Julie

    #471560

    Hey Julie!

    Use two Portfolio Grid elements, set a class of “no-mobile” and “no-desktop” accordingly, and add this to Quick CSS:

    @media only screen and (min-width: 767px) {
    	.only-mobile{ 
    		display: none
    	}
    	.only-desktop{
    		display: block;
    	}
    }
    .only-mobile{
    	display: block;
    }
    .only-desktop{
    	display: none;
    }

    Regards,
    Josue

    #471574

    Hi Josue,

    Thank you for your reply!

    I added this to the Quick CSS and refreshed the cache and didn’t notice any change.

    Thoughts?

    All the best,

    Julie

    #471633

    Hi!

    Did you do this?

    Use two Portfolio Grid elements, set a class of “no-mobile” and “no-desktop” accordingly

    Best regards,
    Josue

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