Markers ul ol issue

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sat Jul 18, 2015 12:24 pm
Reply with quote
Report this post
Hi!

I need to use ul markers inside ol markers

I use this code:

Code: Select all
<ol>
   <li>text1</li>
   <li>text2<br />
<div>
   <ul>
      <li>test1</li>
      <li>test2</li>
   </ul>
</div>   
   </li>
   <li>text3</li>
</ol>


When I open page with this code using default joomla template - it works fine:

Image

But when I enable Creativity - it does not displays ul markers...

Image

How I can fix it?

Thanks.
User avatar
Expert Boarder

teitbite
Sat Jul 18, 2015 1:15 pm
Reply with quote
Report this post
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.
User avatar
Moderator

GK User
Sat Jul 18, 2015 2:00 pm
Reply with quote
Report this post
User avatar
Expert Boarder

teitbite
Sat Jul 18, 2015 8:25 pm
Reply with quote
Report this post
Hi

You have a class in override.css which looks like this:

Code: Select all
.blog-text ol li::before {
    background-color: #b5b5b5 !important;
    border-radius: 20px;
    color: white;
    content: counter(item, decimal);
    counter-increment: item;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    padding: 0 10px;
}


but if You want a desired layout style should looks like this:

Code: Select all
.blog-text ol > li::before {
    background-color: #b5b5b5 !important;
    border-radius: 20px;
    color: white;
    content: counter(item, decimal);
    counter-increment: item;
    font-size: 14px;
    font-weight: 500;
    margin-right: 10px;
    padding: 0 10px;
}
User avatar
Moderator


cron