Category: Uncategorized
-
-
Boxy Images are so last year!
A few images from a visit to Moesgaard Museum by Aarhus. Cover Block Shape the image via radius, add border around things. You can edit the radius of each corner.
-
WordPress theme with Bootstrap
An excellent tutorial by Zac Gordon: “How to Build a Responsive WordPress Theme with Bootstrap”. Â You’ll learn to hack a WP theme from scratch with Bootstrap and jQuery enabled.
-
Reset $_POST (in WP ??)
function testSubmit() { var x = document.forms[“myForm”][“input1”]; var y = document.forms[“myForm”][“input2″]; if(x.value ==”” || y.value==””) { alert(‘Not allowed!!’); return false; } return true; } function submitForm() { if(testSubmit()) { document.forms[“myForm”].submit(); //first submit document.forms[“myForm”].reset(); //and then reset the form values } }