Category Archives: Web
Letter O or digit 0?
When playing online with friends yesterday, I had to dictate over phone a short URL with random characters in it. Unfortunately, some characters could have been the letter O or the digit 0 and I was unable to know that! … Continue reading
Parallax scrolling in HTML5
The parallax scrolling is an effect applied to an image to make it move slower or faster than the other images. This effect is very popular in the 2D games, to create a feeling of deepness : when an image … Continue reading
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; } |
Display your Linkedin profile on your blog or website
I tried to put my public Linkedin profile in the “About” section of my blog. After reading various tutorials, I realized that none were made for statically displaying a specific profile. Here is a simple solution, a small piece of … Continue reading