Css

Create a start page using HTML and CSS

       230 words, 2 minutes

Because Apple does not allow Floccus to manage the bookmarks on Safari for iOS and iPadOS, I have no straight forward access to my few regular bookmarks. Sure, I could simply register them once for all. But building an HTML/CSS webpage to display them is more fun.

Continue reading...


Move WordPress admin bar to the bottom

       77 words, 1 minutes

I’m building a WordPress theme that has a fixed top menu bar. Hence, the admin bar supersedes it ; and that’s not nice. So I just wanted to move it to the bottom of the page, where nothing lies. You will just need to add the following code to your functions.php file:

Continue reading...


Automatic HTML numbered headings

       248 words, 2 minutes

Quoting W3C, “(…)A heading element briefly describes the topic of the section it introduces. Heading information may be used by user agents, for example, to construct a table of contents for a document automatically(…)”. When write a bunch of HTML text, I usually use heading elements to separate chapters and sections. The thing is, by default, those headings aren’t numbered. And when the article is quite long, this may lead to a “where am I” sensation. Here’s a quick way to automatically generate numbered heading elements from standard HTML and CSS code.

Continue reading...