2) Your CSS is working, what size do you want the logo though?
3) Your layout is the same as the demo,is there something specific I’m missing?
4) There is not an option to adjust the columns. You would need to edit the JS file. Locate js/functions.js.php
and find this:
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;
},
You will see multiple references to this itemColumns =
there you can change the number of columns for each screen size.
Thanks