Results tagged “Less Framework”

WordPress Brown Bag

I shared my progress on our intranet at a brown bag session on WordPress yesterday. Essential to our site is the Less Framework adaptive CSS grid system which skins our content to the users device. I added the Starbucks nomenclature to identify the proportions within. Observe how the bricks reassemble themselves as the screen size changes.

Getting Media Queries To Work

I'm using WordPress for our intranet and incorporating the Less Framework template so our pages respond to the device. I learned that I need to add the following line to the header.php file. I added it after the stylesheet call.

<meta name="viewport" content="width=device-width, 
initial-scale=1"/>

Also, I changed the tablet dimensions to the following:

@media only screen and (min-width: 768px) and (max-width: 1024px) { }
1