Create Custom Code with the browser’s Inspector or the Live CSS Box

Tutorial level: basic HTML and CSS

The customization process is heavily backed up by the theme settings but sometimes you may need to change parts of the site for which there’s no predefined option. This is not a hard task, it just requires some basic knowledge of how HTML and CSS work.

How to Create Your Custom Code

Every browser comes with a handy tool called the Browser Inspector which can help you get a better grasp of the code behind any website. To better understand how it works please go through Chrome’s Developers Tools Overview.

Let’s say we want to change the color of the post titles inside a content block. First, identify the part of the site you want to edit, then right-click on it and select the ‘Inspect’ option:

Inspect to see your custom code

The developer tools section will appear on the screen. In most cases, the first selection may not be very precise and you’ll probably not ‘inspect’ the desired element because of the website’s complex HTML structures which are based on different containers stacked one on top of the other.

Custom Code

Now you’ll need to select and open every container until you find to the one you are looking for. The Visual Selector will be very useful in this matter.

The Visual Selector steps:

  1. Click on the Visual Selector icon on the left side of the Inspector tool.
  2. Select the element you want to edit.
  3. Find the proper HTML class.
  4. Identify the CSS selector used to style the element.

How custom code looks on the frontend

The post titles themselves are HTML headings so we will have to open the containers to find the heading tag. Once you identify the element, you will see it’s CSS styling on the right side of the Developer Tools area. You will see a live visual representation of each change you make in the element settings.

Let’s change the title color. For this step, you will need basic knowledge of CSS selectors. The H3 tag of the post title has a class called td-module-title. We can use it in our code and target the anchor tag:

.td-module-title a {
color:red;
}

This will apply to each element that has this structure. To increase your selector’s specificity you’ll need to add more classes from the containers above the title.

.td_module_6 .td-module-title a {
color:red;
}

Now the code will be applied only to the titles from a Module 6, but this will affect every place where Module 6 is used and again we need to be more specific to grab a few more classes from the containers above.

.td_block_1 .td_module_6 .td-module-title a {
color:red;
}

Now the color will apply only to a Block 1 that has a Module 6 with a module title and an anchor tag. If you want to be even more specific than this you can add an extra class to the row in the page builder.

The CSS language needs precise directions to know where exactly to apply the changes you want. It is the so-called Specificity.

Now that you are happy with the results, you can add the snippet in the designated custom code area of the Theme Panel. The Newspaper theme will automatically apply it.

Where to add Custom Code

Make small visual adjustments with the Live CSS box

It’s simple to make customizations with Live CSS on both pages and articles. On every post, you can easily insert code lines to adjust a specific section by changing fonts, colors, borders, backgrounds, alignments, opacity, and more. The tool is also available in tagDiv Composer to help you customize each element of the page.

Edit with Live CSS - Cutom Code

This tool is designed to help you make quick fixes to your site design. It supports syntax highlighting, so you have a clear view of what you’re typing. This particularity displays the source code in distinctive colors and fonts according to the category of terms. If an error slipped through your fingers, this tool performs a static analysis of everything you write and lets you know if something’s wrong. It highlights the line where the error is located, so you can easily find and correct it.

The Live CSS comes with an integrated compiler that reads both CSS and LESS formats, therefore you can write your syntax in any “language” you want. The tool will translate it, and you will get instant results!

Live CSS box - custom code

Use the techniques presented in this tutorial to discover how the websites you love are built, and have fun customizing your own!