PDA

View Full Version : dots in pages



Petrache Nicolae
January 30, 2014, 09:54 AM
805

in static page, i am adding dots like you see in image and in front, they do not show

Steffen Buschkemper
January 30, 2014, 11:25 AM
Hi Petrache,

This trouble has been mentioned here before since 4.01.
Give your ul tag an id or class.
Then you can define this in the css.

With a class, it looks something like this



ul.yourclass {
list-style-type: disc !important;
}


or check



ul.yourclass li {
list-style-type: disc !important;
}


you can define this also as inline css or style



<ul style="list-style-type:disc;">
<li>123</li>
<li>456</li>
</ul>


I'm not sure if it works now.
Back then there were problems and there was no solution by flynax.

Regards
Steffen

Petrache Nicolae
January 30, 2014, 11:44 AM
Flynax team, a fix for this bug so all users can apply it?

Viktor
January 31, 2014, 03:56 AM
Hello Petrache Nicolae,

By default in all templates in css exist class:



ul,
li
{
padding: 0;
margin: 0;
list-style: none;
}


Maybe it was removed for you.

Petrache Nicolae
January 31, 2014, 06:17 AM
Hello Petrache Nicolae,

By default in all templates in css exist class:



ul,
li
{
padding: 0;
margin: 0;
list-style: none;
}


Maybe it was removed for you.

hello Viktor. Mike is the only one who has worked in my new domain and he is fixing multifield problems so i don't think he touched the css. i didn't touch the css as well (for the moment since i wait for the flynax responsive wich shoulded be released 2 times by now as saided... or the bootstrap version from Steffen, depending wich one is better)