How to change font size with CSS

If you need to change the font size in WordPress with CSS use this snippet… font-size: 28px; This would change the size to 28px. Font sizes can be set with px or other values like percentage, em, pt, etc.

Read more... 3 Comments

How to change font color with CSS

If you need to change the font color in WordPress or another website you can use this snippet… color:red; This would change the color of your font to red. You can also use HEX colors like this… color:#2a2a2a; This would apply a dark grey color to your font. You can use an online color picker […]

Read more... 10 Comments

How to manage WordPress comments

How to manage WordPress comments

How to manage WordPress comments

If your visitors are allowed to comment on your WordPress posts you need to manage comments. You are able to set your discussion settings in “Settings” > “Discussion”. This tutorial will not focus on the discussion settings but on how to manage comments. In the WordPress dashboard click “Comments” in the menu. From there you […]

Read more... 8 Comments

How to tweak WordPress general settings

How to tweak WordPress general settings

How to tweak WordPress general settings

To change the general WordPress settings, click “Settings” in the WordPress menu. Here you will find several fields. Let’s take a look at these… 1: Site Title The site title is used in the browser tab to show what your website is named. Usually this is the same as the URL or something similar. The […]

Read more... 8 Comments

How to create a line break with HTML

There are usually multiple ways to create line breaks to your text. Wrapper each paragraph in a p-tag would usually do the trick but you can create manual line breaks as well. To do this you only need a single tag like this… <br /> If you need multiple line breaks you can just add […]

Read more... 8 Comments

How to underline text in HTML

Underline text is often used on links or to create extra focus on a text part. Just like italic text and bold text you need two tags. One at the beginning and another one at the end with your text inside the two tags. Underlined text would look like this… <u>this is underlined</u> You would […]

Read more... 7 Comments

How to make text italic in HTML

If you want to use italic it is quite simular to the way bold text and underlined text is done. It consists of a beginning and ending i-tag like this… <i>this is italic</i> Italic text can be useful in some cases. Maybe you want an article signature to be italic or an image caption. The […]

Read more... 9 Comments

How to make text bold in HTML

Sometimes it is nice to mark text as bold to indicate its importance. This can be done by adding a b-tag around your text like this… <b>this is bold</b> Often you will use the b-tag inside another HTML tag. For example inside a paragraph which is indicated here… <p>This is a tutorial about making <b>bold […]

Read more... 6 Comments

How to create HTML lists

There are two types of HTML lists – the ordered list and the unordered list. The unordered list will display your list with bullets while the ordered list will assign ongoing numbers to the list. Lets start with the unordered list which is used most often <ul> <li>List item 1</li> <li>List item 2</li> <li>List item […]

Read more... 6 Comments

How to add headlines with HTML

When builing your HTML page you probably want some headlines. HTML provide 6 headline tags consisting of H1, H2, H3, H4, H5 and H6. The lower the number the higher the value. You should only have one H1 tag per page, a couple of H2 tags and some H3 tags and lower. This depends on […]

Read more... 4 Comments

« Previous PageNext Page »