Tag Archives: CSS
Handmade picture gallery: #slideshow
Slideshows are a very common picture gallery type. Unfortunately I did not manage to find a simple and highly editable slideshow on the web, so I developed my own in few days. I publish it here, feel free to modify … Continue reading
Jetpack contact forms: remove the empty lines
On a WordPress blog, when using the Jetpack contact forms ([contact-form] tag), you may see some useless empty lines. To work around this behavior, edit the CSS (Dashboard > Appearance > Edit CSS) and add this code:
1 2 3 |
.contact-form br { display: none; } |