Welcome to Lantro UI! Test link Buy now!

How To Add Custom List To Blogger

Hello Blogger users, in this tutorial I will share with you all How To Add Custom List To Blogger. Installing a Custom List on your website will look more professional, plus it can also serve as an assessment of the views.

What is Custom List?

An ordered list typically is a numbered list of items. HTML 3.0 gives you the ability to control the sequence number - to continue where the previous list left off, or to start at a particular number.

Step to make Custom List.

Adding CSS!
  • Go to Blogger
  • Go to Theme Menu
  • Click on edit HTML
  • Now Copy the Code and Paste the above the ]]></b:skin>

.custom-ol {
    padding: 24px 32px;
    box-shadow: 0 4px 16px -3px rgba(0, 0, 0, 0.25);
    max-width: 500px;
    margin: 24px auto;
    border-radius: 10px;
    font-family: "Roboto", sans-serif;
    color: #073b4c;
}

.custom-ol h2 {
    font-size: 28px;
}

.custom-ol ol {
    margin: 0;
    padding: 0;
    margin-top: 32px;
    list-style: none;
    counter-reset: web-design;
}

.custom-ol ol li {
    margin: 28px 0;
    font-size: 18px;
    display: flex;
    align-items: center;
    transition: all 400ms;
}

.custom-ol ol li:hover {
    background: #ffd166;
}

.custom-ol ol li::before {
    content: counter(web-design);
    counter-increment: web-design;
    margin-right: 24px;
    font-size: 32px;
    font-weight: bold;
    background: #0071a7;
    padding: 8px 16px;
    border-radius: 0 8px 0 8px;
    color: #eee;
    transition: all 400ms;
}

.custom-ol ol li:hover::before {
    background: #073b4c;
    transform: scale(1.2) rotate(-5deg);
}

Adding HTML code.
  • Click on Save
  • Now make Post/Page and copy the code and paste 
<div class="custom-ol">
        <h2>Steps To Design A Website</h2>

        <ol>
            <li>The Planning Phase</li>
            <li>Create The Wireframe</li>
            <li>Design It</li>
            <li>Write The Code</li>
            <li>Publish The Website Online</li>
        </ol>
    </div>

Preview





Rate this article

Post a Comment