What Is CSS? Inline CSS Tricks And Tips For Total Beginners

How even you can use CSS to style your web pages

You don’t need to know anything about computer code. All you need know is how to copy and paste.

But first, what is CSS?

Cascading Style Sheets (CSS) is a stylesheet language code that theme developers use to describe and change the presentation or look of an HTML document.

In simple terms, the CSS file makes HTML pages look nice.

No matter what blogging platform you are using, you can change your CSS properties to make your blog look even better.

Depending on your blogging platform, you will have an option in your theme settings for Custom CSS or Additional CSS.

You might never have looked at this option. Or if you have, you might think it is too difficult to learn how to code.

But it is really super easy. I know nothing about web development or CSS syntax, but I can change a style attribute in seconds.

All you need to do is to use your Chrome or Firefox web browser Developer Tools and learn a few simple CSS tricks and tips.

Why would you want to learn how to edit your blog’s CSS?

You probably have a lot of settings in your blog’s theme. But there many smaller elements that might be missing.

Even in premium themes for WordPress, some options are not available in the standard options. This is why you can help your CSS work better by making your own edits and changes.

By changing an external style sheet, it can reference all your HTML pages.

So if you make a change to your HTML headings on one page, it will change the HTML tag on all your pages.

The reference is called a pseudo-element. It means that if you change the look of your H2 heading, it will change all H2 headings on your site.

But you don’t need to learn all about these complications.

All you need to know is that it works and that you can style your blog to exactly how you want it to look without knowing anything at all about coding.

How to easily change your inline CSS

The first step is to open your blog in Firefox or Chrome.

In the examples below, I have used Firefox. I find it a little more friendly to use than Chrome. But both work in a similar manner.

Open your blog in a new tab or window. You can navigate to the page you want to change.

Now open Developer Tools Inspector from the Tools menu in Firefox or the View menu in Chrome.

Dev tools Inspector

Click on Inspector to open the tools pane.

Dev tools select elements

You can select any inline style element on your page by using the selector arrow in the top left of the tools pane. Move your cursor across your page to select an element. Or you can click on individual elements in the list.

You will see each element you select highlighted in blue in your browser view of your web page.

Now you are ready to make changes to the way your page looks.

Using the CSS selector

In my example, I am going to change the look of the H2 title element.

You could choose to change the H1 element, body text or an image caption.

Dev tools pane H2 tag

I want to start by changing the font size. All you need to do is click into the style tag font-size, and change the number.

change font size

I changed the size from 33px up to 56px. You can see that the size of the heading is now bigger.

Don’t worry. You haven’t changed your live blog page. What you see in your browser pane is only a preview of your changes.

You can play around as much as you like with any HTML element. Everything you see in the browser pane is only a preview of what your changes to a CSS rule will look like.

Now I want to change the color of the text.

Change color

If you click on the color dot between the color-tag and number, you open the color selector.

Now simply choose the color you want to use.

Select new color

It is simple to change your HTML attribute color. Here I have changed from black to blue.

It looks good, but the line height could be better. I’ll change it.

Select line height

The current setting is for 1.2, which is too much space between the lines. I want the lines closer together.

So, I’ll change it to 1.0.

Change the line height

That looks much better.

I have made three changes to how my H2 heading looks in preview mode. I have changed the font size, the color, and the line spacing.

Now it’s time to add these changes to my live site.

How to get the code for your site

You need to copy the lines of code that you have modified.

Copy code

Select and copy all the code. Make sure you copy all the lines, including the last bracket.

Now paste it into a text editor. You can use Notepad on a PC or Text Editor on a Mac.

paste code 1

The other change we made was to the color. We need to copy this line too.

Copy color code

You only need to copy the line for the color. You can see that the H2 element is in bold in the image above. It means that it is the same pseudo-element as our first code. So you can use them together.

Copy the line.

Now add the line to your text editor.

Paste color code to text editor

You might need to add or delete a few spaces so that your color line is indented the same.

Now you are ready to add these three changes to your live site.

Add the code to your site

Go to your theme options and select your CSS options.

customizer options

In WordPress themes, it is in the Theme Customizer and is called Additional CSS or Custom CSS. It will be called something similar to other blogging platforms.

Now copy all the code from your text editor, and paste it into your Customizer tab.

Paste code

As soon as you paste the code, your previewer will show you the changes you have made.

Click publish, and you have done it!

Here is a comparison of before and after my changes.

Original page
Updated live page

You can do much more

This was a simple step by step introduction to editing your CSS styling.

You can do so much more if you want to experiment and try to change other elements.

You can add borders or shadows to images, move text left or right, or resize your body text width. You can move margins or reduce or increase padding and modify alignment. There are hundreds of options you can choose to edit.

Remember that when you are working in Developer Tools, you are not going to affect your site. Any changes you make are only visual within that browser window.

It doesn’t matter what you try, or if it works or not. Think of it as a playground for you to learn how much more you can do to style your website or blog.

Be curious, and you will have fun learning this new skill.

A big bonus tip with Developer Tools

Now that you have your Developer Tools frame open, there is one very neat thing you can do.

You can test your site speed!

All you need to do is click on the Network tab.

Then click CTRL + R.

page speed

You will see your fully-loaded page speed time in red on the line at the bottom marked with the arrow.

So easy!