How to add a background color

If you like to set a background color on a div or any other html element you can use this code… background-color: #000; This would make the background of the div black. You can use any color code you like. Use a color picker to find your preferred color. If you need to add transparency […]

Read more... One commment

What is Managed WordPress hosting?

Managed WordPress hosting is a popular term among WordPress hosting providers. It is basically some features they offer if you have a WordPress website. Managed WordPress hosting can vary much in terms of features depending on the provider as it is not a software solution. When searching for a WordPress host with Managed WordPress hosting […]

Read more... 7 Comments

How to change font weight with CSS

The font weight defines the thickness of your font. You can use this to highlight an important piece of text or change the style of headlines. Different fonts supports different styles so you may not be able to use all values on a specific font. font-weight: bold; This would make the font bold and apply […]

Read more... 4 Comments

How to add a border with CSS

You can use CSS to apply borders to almost any element like images, text, div-tags etc. A border CSS style could look like this… border:1px solid #2a2a2a; This style would add a solid border with a width of 1px and the color #2a2a2a. You can set any border width and a border can have different […]

Read more... 14 Comments

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

« Previous PageNext Page »