Skip to main content

Sinu P Sabu

WORDPRESS • ELEMENTOR • HTML • CSS

You Don't Need a Developer for Every Website Edit

Learn how to use HTML and CSS inside WordPress and Elementor to create custom sections, cards, buttons, author boxes, CTAs and responsive page designs.

Have you ever wanted to change something on your website but couldn't find the right Elementor widget?

Maybe you wanted a custom card, a special author section, a unique CTA or a layout that wasn't available in the normal Elementor options.

This is where a little knowledge of HTML and CSS can make website editing much easier.

What Is HTML?

HTML stands for HyperText Markup Language. It is one of the basic technologies used to structure content on a website.

Think of HTML as the structure of your webpage. CSS controls how that structure looks.

01

HTML

Creates the structure and content of your website.

02

CSS

Controls colors, spacing, fonts, borders and layout.

03

Elementor

Provides a visual interface to build WordPress pages.

Start With Simple HTML

You don't need to memorize hundreds of HTML tags. Start by understanding a few common ones.

<h2> Heading
<p> Paragraph
<a> Link
<img> Image

Example: Creating a Heading

<h2>Digital Marketing Training</h2>

The browser understands this as a heading. You can change the words inside the tag.

Example: Creating a Button

<a href="https://example.com"> Learn More </a>

How to Add HTML to Elementor

Elementor makes it relatively easy to use custom HTML. You can add an HTML widget to your page and place your custom code inside it.

1

Open Elementor

Open the WordPress page you want to edit using Elementor.

2

Add the HTML Widget

Search for the HTML widget and drag it into your required Elementor container.

3

Paste Your Code

Paste your HTML and CSS code into the widget.

4

Preview and Test

Check desktop, tablet and mobile before publishing.

Create Custom Cards With HTML

One of the most useful applications of HTML and CSS is creating custom cards.

<div class="service-card"> <h3>SEO</h3> <p> Improve your website visibility and attract relevant organic traffic. </p> <a href="#"> Explore SEO </a> </div>

CSS can then control the appearance of the card.

.service-card { padding: 30px; background: #ffffff; border-radius: 18px; box-shadow: 0 10px 30px rgba(0,0,0,0.08); } .service-card h3 { color: #002838; } .service-card a { background: #81D853; color: #002838; padding: 12px 20px; border-radius: 8px; }

A Practical Example

Imagine you want three cards on your digital marketing website:

SEOGoogle AdsSocial Media Marketing

Instead of creating every element separately, you can build a reusable HTML structure and change only the content.

Don't Forget Mobile Responsiveness

This is one of the most important parts of custom HTML. A design that looks perfect on desktop may not look good on a mobile phone.

CSS media queries allow us to change the layout when the screen becomes smaller.

@media (max-width: 768px) { .services { grid-template-columns: 1fr; } }
KEY IDEA
Desktop can show multiple cards side by side, while mobile can automatically stack them vertically.

What Can You Create With HTML + CSS?

Custom Cards

Create service, feature and information cards.

Author Boxes

Create professional author sections for blog posts.

CTA Sections

Create custom call-to-action areas.

Pricing Cards

Create custom pricing and package layouts.

Comparison Tables

Display features and plans in a clean format.

Blog Sections

Build custom sections inside your articles.

Creating an Author Card

You can also use HTML to create a custom author profile section instead of using a simple text line.

Sinu P Sabu

Sinu P Sabu

Digital Marketing Trainer & SEO Expert

Practical insights on SEO, Google Ads, WordPress, digital marketing and AI.

HTML Can Also Create Call-to-Action Sections

For example, a blog article can end with a custom CTA encouraging visitors to learn more, contact you or explore another page.

<div class="cta-box"> <h2> Want to Learn Digital Marketing? </h2> <p> Start learning SEO, Google Ads, Social Media Marketing and WordPress through practical training. </p> <a href="#"> Get Started </a> </div>

HTML vs Elementor: Which Should You Use?

Requirement Recommended
Normal heading Elementor
Normal paragraph Elementor
Standard image Elementor
Basic button Elementor
Custom card HTML + CSS
Custom author box HTML + CSS
Advanced custom layout HTML + CSS
Responsive custom component HTML + CSS

How to Edit Existing HTML Code

This is where many beginners become nervous. But you don't need to understand every line before making a simple change.

<h2>SEO Training</h2>

Want to change the heading?

<h2>Advanced SEO Training</h2>

You have just edited HTML.

Changing Colors With CSS

background: #002838; color: #ffffff; border-radius: 15px; padding: 20px; font-size: 20px;

You can experiment with one property at a time and immediately see what changes on your website.

Can AI Help You Write HTML?

Yes — but understand what you are using.

Today, AI can help generate HTML and CSS based on a design description.

For example, you could ask AI to create a responsive three-card section for a digital marketing website with rounded cards, custom colors and mobile stacking.

But don't simply copy and paste everything. Learn where the heading, image, link, color and spacing are controlled.

My Simple HTML Workflow

1

Plan

Decide what the section should look like.

2

Build

Create the HTML structure.

3

Style

Add CSS for colors, spacing and layout.

4

Responsive

Make sure the design works on mobile.

5

Test

Check desktop, tablet and mobile.

6

Publish

Update the page after everything works.

FINAL TAKEAWAY

HTML is not something that belongs only to programmers. Even a basic understanding of HTML and CSS can make WordPress and Elementor editing much easier.

Elementor gives you visual control. HTML and CSS give you another level of customization.

Ready to Start Experimenting With HTML?

Start small. Create one card, change one color, edit one heading and test one responsive section. The more you experiment, the more comfortable HTML becomes.

Explore More Digital Marketing Resources
```

Leave a Reply

Your email address will not be published. Required fields are marked *