I’m sorry, this was this first notification that I’ve recieved from the forum. I was unaware that other posts had been made.
I appreciate your input about copyright law, and I’ll try to incorporate your suggestion into the next version.
The biggest change to 2.0.1 is that the Foundation framework has been updated from version 4 to version 5. There are some slight style differences such as the button styles. You can see more at foundation.zurb.com
Changing Widths:
My best advice is to use the following css to change widths of the sidebar and main content area. Just add it to syle.css in your child theme
@media only screen and (min-width: 64.063em) {
#container.large-8 {
width: 75%; /* your custom percentage */
}
#main .large-4 {
width: 25%; /* your custom percentage */
}
}
disable post-images:
add the following line to your childtheme’s functions.php file
remove_theme_support( 'post_thumbnails' );
Reference Link