View Single Post
Old 02-25-2017, 01:21 AM  
k33n
Confirmed User
 
Join Date: Feb 2009
Posts: 201
looks great and i really like the random title function.I got stuck at customizing and i hope you can help me out.I am trying to change how thumbnails appear based on media queries,so in thumbnail.scss i am changing .thumbnail class like this

Code:
  
                @include breakpoint(medium) {
			width: 33%;
		}

		@include breakpoint(small) {
			width: 50%;
		}

		@include breakpoint(xsmall) {
			width: 100%;
		}
Also i have changed skel breakpoints in main.scss

Code:
@include skel-breakpoints((
		xlarge: '(max-width: 1680px)',
		large: '(max-width: 1280px)',
		medium: '(max-width: 980px)',
		small: '(max-width: 480px)',
		xsmall: '(max-width: 360px)'
	));
but nothing is changing.In other words i want thumbnails to be like this max width 360px on single column,max width 480px on 2 columns,more than 480px on 3 columns.I cant figure out why is not working.Also changing .thumbnail class from 20% to 25% is not working either.Is not a cache issue because i can see in browser that the values are changed.

Thank you!
k33n is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote