Sign Up

Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.

Have an account? Sign In

Have an account? Sign In Now

Sign In

Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.

Sign Up Here

Forgot Password?

Don't have account, Sign Up Here

Forgot Password

Lost your password? Please enter your email address. You will receive a link and will create a new password via email.

Have an account? Sign In Now

You must login to ask a question.

Forgot Password?

Need An Account, Sign Up Here

Please briefly explain why you feel this question should be reported.

Please briefly explain why you feel this answer should be reported.

Please briefly explain why you feel this user should be reported.

Sign InSign Up

The Archive Base

The Archive Base Logo The Archive Base Logo

The Archive Base Navigation

  • SEARCH
  • Home
  • About Us
  • Blog
  • Contact Us
Search
Ask A Question

Mobile menu

Close
Ask a Question
  • Home
  • Add group
  • Groups page
  • Feed
  • User Profile
  • Communities
  • Questions
    • New Questions
    • Trending Questions
    • Must read Questions
    • Hot Questions
  • Polls
  • Tags
  • Badges
  • Buy Points
  • Users
  • Help
  • Buy Theme
  • SEARCH
Home/ Questions/Q 3953738
In Process

The Archive Base Latest Questions

Editorial Team
  • 0
Editorial Team
Asked: May 20, 20262026-05-20T02:00:42+00:00 2026-05-20T02:00:42+00:00

I have HTML code like this: <tr> <td align=left valign=bottom class=leftfooter><a href=#>Customer Support</a> <a

  • 0

I have HTML code like this:

<tr>    
  <td align="left" valign="bottom"  class="leftfooter"><a href="#">Customer Support</a> <a href="#" class="footerlink">About</a></td>
</tr>

How can I place one small red dot in front of the entire text? Kind of like

  • but red and smaller.

    Edit

    Just to clarify, I didn’t write this HTML. I just copied and pasted it to show what I’m working with. I realize that I should use an unordered list to do this same task instead of a table structure for this purpose for semantic reasons. If I can, I will see if I can modify this piece of the code to a more suitable one in the customer’s codebase.

    • 1 1 Answer
    • 0 Views
    • 0 Followers
    • 0
    Share
    • Facebook
    • Report

    Leave an answer
    Cancel reply

    You must login to add an answer.

    Forgot Password?

    Need An Account, Sign Up Here

    1 Answer

    • Voted
    • Oldest
    • Recent
    • Random
    1. Editorial Team
      Editorial Team
      2026-05-20T02:00:42+00:00Added an answer on May 20, 2026 at 2:00 am

      I hadn’t noticed that you were using table elements, at first, so I’ll preface my existing answer with the strong suggestion to use an actual ul, or ol, element. Which conveys some form of meaning of the contents therein. Please consider screen-readers, or users with devices that access the data non-visually.

      Pretty easily:

      html:

      <ul>
          <li><span>Some text</span></li>
          <li><span>more stuff</span></li>
      </ul>
      

      css:

      ul {
          margin-left: 2em;
          padding-left: 1em;
          list-style-type: disc;
      }
      
      li {
          list-style-type: disc;
          color: #f00;
      }
      
      li > span {
          color: #000;
      }
      

      JS Fiddle demo.

      Explanation:

      The reason for the span within the li elements is that the text-color of the ‘bullet’ (list-style-type: disc;) cannot be changed independently of the text of the li itself. Using the span allows the text contained within to be of a different color to the ‘bullet.’

      This is partially related to my own question: How to colour the list-style-type of aut-generated numbers?.


      However to answer the question as asked:

      Using the following image:
      enter image description here

      The following css will work:

      td {
          background: #fff url(https://i.stack.imgur.com/Q5lQ4.gif) 0 50% no-repeat;
          padding-left: 14px;
      }
      

      JS Fiddle demo.

      I leave it entirely to you to find an actual red bullet image.

      • 0
      • Reply
      • Share
        Share
        • Share on Facebook
        • Share on Twitter
        • Share on LinkedIn
        • Share on WhatsApp
        • Report

    Sidebar

    Related Questions

    I have html code like this: <li> <a href=''>Example</a>&nbsp;<a href='' class='sub'>Edit</a>&nbsp;<a href='' class='sub'>Delete</a> </li>
    Say I have jquery code like this: html += '<div class=index>' + item.index +
    I have some html code like this. <a href=http://www.google.com.pk id=goog title=<table width='20%' border='1'> <tr>
    I have HTML code like this : <div> <a>Link A1</a> <a>Link A2</a> <a>Link A3</a>
    I have html code that looks roughly like this: <div id=id1> <div id=id2> <p>some
    Let's say I have some code like this: <html> <head><title>Title</title></head> <body> <?php if (!$someCondition){
    Currently, I have a code like this <!DOCTYPE HTML PUBLIC -// W3C//DTD HTML 4.01
    I have seen an HTML code like this for the ID attribute: id="t1:c3" Can
    I have HTML code edited by FCKEditor stored in a database and would like
    I have the following html code: <h3 id=headerid><span onclick=expandCollapse('headerid')>&uArr;</span>Header title</h3> I would like to

    Explore

    • Home
    • Add group
    • Groups page
    • Communities
    • Questions
      • New Questions
      • Trending Questions
      • Must read Questions
      • Hot Questions
    • Polls
    • Tags
    • Badges
    • Users
    • Help
    • SEARCH

    Footer

    © 2021 The Archive Base. All Rights Reserved
    With Love by The Archive Base

    Insert/edit link

    Enter the destination URL

    Or link to existing content

      No search term specified. Showing recent items. Search or use up and down arrow keys to select an item.