Viewing 5 replies - 1 through 5 (of 5 total)
  • Hi Dreamh11,

    It looks like something has overridden your ordered list style. It’s a pretty simple fix with CSS.

    ol {
      list-style-type: decimal !important;
    }

    The !important will make sure that the style isn’t overridden any longer.

    Hope this helps!

    Hi dreamh11,

    Your issue is mainly because a reset css in your theme. Reset css is required to reduce inconsistencies in parameters such as line height, margin, padding spacing etc.

    A simple fix to your query is include following styles in style.css file of your theme;

    .post-entry ol {
        list-style: initial;
        list-style-type: decimal;
    }

    All the best with this solution.

    Thanks.

    Thread Starter dreamh11

    (@dreamh11)

    Hi,
    Thanks for your solutions. But can you explain me the process of solving this problem as because I am a newbie in this field.

    Hi Dreamh11,

    The Problem you had specified was basically related to simple CSS styling.

    So no process as such was involved to determine this.

    However to get such kind of issues being sorted in future, just check CSS styles being applied to the respective elements. But a prior CSS knowledge is required in case you need to debug further.

    Thanks.

    Thread Starter dreamh11

    (@dreamh11)

    Thanks a lot. My issue has been resolved.

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Default Numbering not showing’ is closed to new replies.