• Home
  • Archive
  • Tools
  • Contact Us

The Customize Windows

Technology Journal

  • Cloud Computing
  • Computer
  • Digital Photography
  • Windows 7
  • Archive
  • Cloud Computing
  • Virtualization
  • Computer and Internet
  • Digital Photography
  • Android
  • Sysadmin
  • Electronics
  • Big Data
  • Virtualization
  • Downloads
  • Web Development
  • Apple
  • Android
Advertisement
You are here: Home » Colored Tick Mark, Unordered List with Icon-Font

By Abhishek Ghosh April 28, 2014 5:31 pm Updated on April 28, 2014

Colored Tick Mark, Unordered List with Icon-Font

Advertisement

It Looks Great to Have Colored Tick Marks, Unordered List with Icon-Font ! Most Importantly, with Base64 Encoding, no image to load! Definitely, this is somewhat advanced article and you must must be used with our way of hacking – every good website has some special way of making the things to work. CSS Tricks has a set, Perishable Press has a set and so on. None probably copies from each other.  So, you probably need to read Using Icon-Font with WordPress, which basically will help any CMS, any HTML, PHP, ASP, whatever webpages to make them working. Before clicking the link – know it clearly : the article has lot of links to other guides! It will really consume a huge time if you are a newbie. But, warranted fact is – after reading the guide; you can practically play with the icons. Do not like red colored tick mark? Ok, go green then. Wherever, whenever you want; you can add colored Tick Mark, unordered list with Icon-Font and no extra CSS will be required.

Colored-Tick-Mark-Unordered-List-with-Icon-Font

 

Colored Tick Mark, Unordered List with Icon-Font : Do More in WordPress

 

Going a bit off topic; actually WordPress has lot of Icon-Fonts now – Tools, Settings, Users – probably that set can cover a huge number of usage with your theme. You actually can load the css in front end by adding this eneque script function on child theme’s function.php file :

Vim
1
2
3
4
5
6
add_action( 'wp_enqueue_scripts', 'child-theme-name_scripts' );
function child-theme-name_scripts() {
    wp_enqueue_style( 'child-theme-name-style', get_stylesheet_uri(), array( 'dashicons' ), '1.0' );
}
// child-theme-name is just a name;
// array( 'dashicons' ) is important

Let us come back to the topic.

Advertisement

---

 

Colored Tick Mark, Unordered List with Icon-Font : Simple HTML, Nothing More

 

The CSS is already loaded by you (you accepted to read our older guides by scrolling up to this point… ). This is a normal unordered list :

 

  • I am good
  • I am more good
  • Icon-Font is also good
  • But Base64 Encoding is more good

Usually the HTML is :

Vim
1
2
3
4
5
6
<ul>
<li>I am good</li>
<li>I am more good</li>
<li>Icon-Font is also good</li>
<li>But Base64 Encoding is more good</li>
</ul>

And this is probably you want to see :

I am good

I am more good

Icon-Font is also good

But Base64 Encoding is more good

We used this :

Vim
1
2
3
4
<p><i class="icon-check" style="color: green;"></i></i>I am good</p>
<p><i class="icon-check" style="color: red;"></i>I am more good</p>
<p><i class="icon-check" style="color: blue;"></i>Icon-Font is also good</p>
<p><i class="icon-check"></i>But Base64 Encoding is more good</p>

In our case, as in CSS file; the list style of unordered list style is not set to none; we need to force it – it is not actually an unordered list. If you set list style to none; , then you can use :

Vim
1
2
3
4
5
6
7
<ul>
<li><i class="icon-check"></i>I am good</li>
 
...
so on
...
</ul>

Obviously if your CSS coding is bad, it might look bad but, it is usually never happens with Icon-Font (compare with SVG). The fun of adding color is very easy :

Vim
1
<i class="icon-check" style="color: blue;"></i>

This article on Colored Tick Mark, Unordered List with Icon-Font is intended for HTML5 web pages only. i class will not work in previous version of HTML.

Tagged With green color tick mark youtube video title , HTML UL tick , ul with tick mark

This Article Has Been Shared 592 Times!

Facebook Twitter Pinterest

Abhishek Ghosh

About Abhishek Ghosh

Abhishek Ghosh is a Businessman, Surgeon, Author and Blogger. You can keep touch with him on Twitter - @AbhishekCTRL.

Here’s what we’ve got for you which might like :

Articles Related to Colored Tick Mark, Unordered List with Icon-Font

  • Working With WordPress MySQL through PHPMyAdmin Video Guide

    Working With WordPress MySQL through PHPMyAdmin Video Guide is created for any level of users for power usage for optimization, backup and how it works.

  • WordPress Schema.org Plugins : Still No Ideal Plugin

    WordPress Schema.org Plugins are still far away from being even closer to ideal. With the ongoing tendency of WordPress development, it is quite normal.

  • Google Retires Google Affiliate Network (GAN)

    Google Retires Google Affiliate Network (GAN) finally with a brief email to the advertisers and publishers with the deadline scheduled on July 31, 2013.

  • Showing Open Graph Protocol og image, og description Properly

    Showing Open Graph Protocol og image, og description properly can be a challenge – either proper post specific og image is not shown or description is chopped.

  • How to Use Google Data Highlighter and Other Points

    How to Use Google Data Highlighter has been shown as a detailed guide video to tag a set of webpages who can not relate them by HTML tagging. But it has flaws.

Additionally, performing a search on this website can help you. Also, we have YouTube Videos.

Take The Conversation Further ...

We'd love to know your thoughts on this article.
Meet the Author over on Twitter to join the conversation right now!

If you want to Advertise on our Article or want a Sponsored Article, you are invited to Contact us.

Contact Us

Subscribe To Our Free Newsletter

Get new posts by email:

Please Confirm the Subscription When Approval Email Will Arrive in Your Email Inbox as Second Step.

Search this website…

 

Popular Articles

Our Homepage is best place to find popular articles!

Here Are Some Good to Read Articles :

  • Cloud Computing Service Models
  • What is Cloud Computing?
  • Cloud Computing and Social Networks in Mobile Space
  • ARM Processor Architecture
  • What Camera Mode to Choose
  • Indispensable MySQL queries for custom fields in WordPress
  • Windows 7 Speech Recognition Scripting Related Tutorials

Social Networks

  • Pinterest (24.3K Followers)
  • Twitter (5.8k Followers)
  • Facebook (5.7k Followers)
  • LinkedIn (3.7k Followers)
  • YouTube (1.3k Followers)
  • GitHub (Repository)
  • GitHub (Gists)
Looking to publish sponsored article on our website?

Contact us

Recent Posts

  • Is it Good to Run Apache Web server and MySQL Database on Separate Cloud Servers? March 27, 2023
  • Advantages of Cloud Server Over Dedicated Server for Hosting WordPress March 26, 2023
  • Get Audiophile-Grade Music on Your Smartphone March 25, 2023
  • Simple Windows Security and Privacy Checklist for 2023 March 24, 2023
  • 7 Best Artificial Intelligence (AI) Software March 24, 2023

About This Article

Cite this article as: Abhishek Ghosh, "Colored Tick Mark, Unordered List with Icon-Font," in The Customize Windows, April 28, 2014, March 28, 2023, https://thecustomizewindows.com/2014/04/colored-tick-mark-unordered-list-icon-font/.

Source:The Customize Windows, JiMA.in

PC users can consult Corrine Chorney for Security.

Want to know more about us? Read Notability and Mentions & Our Setup.

Copyright © 2023 - The Customize Windows | dESIGNed by The Customize Windows

Copyright  · Privacy Policy  · Advertising Policy  · Terms of Service  · Refund Policy

We use cookies on our website to give you the most relevant experience by remembering your preferences and repeat visits. By clicking “Accept”, you consent to the use of ALL the cookies.
Do not sell my personal information.
Cookie SettingsAccept
Manage consent

Privacy Overview

This website uses cookies to improve your experience while you navigate through the website. Out of these, the cookies that are categorized as necessary are stored on your browser as they are essential for the working of basic functionalities of the website. We also use third-party cookies that help us analyze and understand how you use this website. These cookies will be stored in your browser only with your consent. You also have the option to opt-out of these cookies. But opting out of some of these cookies may affect your browsing experience.
Necessary
Always Enabled
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
CookieDurationDescription
cookielawinfo-checkbox-analytics11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics".
cookielawinfo-checkbox-functional11 monthsThe cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional".
cookielawinfo-checkbox-necessary11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary".
cookielawinfo-checkbox-others11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other.
cookielawinfo-checkbox-performance11 monthsThis cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance".
viewed_cookie_policy11 monthsThe cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data.
Functional
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytics
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Others
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
SAVE & ACCEPT