Viewing 2 posts - 1 through 2 (of 2 total)
  • Posted in: Clique
  • #693
    ripvan
    Member

    How do I adjust the number of columns on a portfolio page (eg my homepage)?

    I know the number of columns depends on screen size but right now your sample page has 5 thumb images across and mine has 6 (jumboatom.com).

    Ultimately I would like to have just 8 images total that take up an entire page (4 columns X 2 rows).

    Please advise.

    #828
    Swift Ideas – Ed
    Keymaster
    Post count: 15264

    Hi there,

    It’s not possible without modifying the theme js file. You can find it in /js/functions.js.php line 436-439:

    returnSize: function() {
    		var itemColumns = 1, windowWidth = $j(window).width();
    		return windowWidth >= 380 && windowWidth < 480 ? itemColumns = 2 : windowWidth >= 480 && windowWidth < 768 ? itemColumns = 2 : windowWidth >= 768 && windowWidth < 1160 ? itemColumns = 3 : windowWidth >= 1160 && windowWidth < 1640 ? itemColumns = 4 : windowWidth >= 1640 && windowWidth < 2100 ? itemColumns = 5 : windowWidth >= 2100 && (itemColumns = 6), itemColumns;
    	},

    – Ed

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

You must be logged in and have valid license to reply to this topic.

License required for one of the following items
Login and Registration Log in · Register