-
AuthorPosts
-
italpascal Friend
italpascal
- Join date:
- November 2014
- Posts:
- 94
- Downloads:
- 95
- Uploads:
- 34
- Thanks:
- 9
- Thanked:
- 3 times in 1 posts
September 18, 2015 at 9:35 am #686154And ‘possible to enable a second class checklist?
I logged into my custom.css an icon in the checklist and it works. Creating check-list2 would change icon
On this page you can see the checklist functioning : http://italpascal.it/index.php/web/91-facebookAlternatively you can use <ol> eliminating the number and entering a icon? I find this information where possible ?
my custom.css
.check-list2 {
padding-left: 0;
list-style: none;
margin-top: 25px;
}
.check-list2 > li {
padding-left: 35px;
padding-bottom: 12.5px;
background: url(“/images/ico/flag_destra.png”) no-repeat left 3px;
}my site italpascal.it
template JA Sugitepavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 18, 2015 at 10:02 am #686196Salve
Il codice non funziona perch? ? sbagliato l’url all’icona
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
questo url restituisce una pagina 404 , prova a mettere le icone nel folder /templates/ja_sugite/images/ico/ e cambia l’url in
background: url("/templates/ja_sugite/images/ico/flag_destra.png") no-repeat left 3px;
Saluti
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 18, 2015 at 10:02 am #748993Salve
Il codice non funziona perch? ? sbagliato l’url all’icona
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
questo url restituisce una pagina 404 , prova a mettere le icone nel folder /templates/ja_sugite/images/ico/ e cambia l’url in
background: url("/templates/ja_sugite/images/ico/flag_destra.png") no-repeat left 3px;
Saluti
italpascal Frienditalpascal
- Join date:
- November 2014
- Posts:
- 94
- Downloads:
- 95
- Uploads:
- 34
- Thanks:
- 9
- Thanked:
- 3 times in 1 posts
September 18, 2015 at 10:13 am #686197<em>@pavit 492879 wrote:</em><blockquote>Salve
Il codice non funziona perche’ e’ sbagliato l’url all’icona
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
questo url restituisce una pagina 404 , prova a mettere le icone nel folder /templates/ja_sugite/images/ico/ e cambia l’url in
background: url("/templates/ja_sugite/images/ico/flag_destra.png") no-repeat left 3px;
Ciao Pavit, se vedi il link che ho inserito ? visibile un icona, ho inserito nel mio custom code l’icona del background in images/ico e si vede. Io pensavo che creando un check-list2 avrei potuto usare :
<ul class=”check-list2″>
<li>testo </li>
</ul>ma nel link, ovvio che ho usato :
<ul class=check-list> <— senza il 2 e funziona
<li>testo </li>
</ul>In sostanza ho questo codice :
.check-list {
padding-left: 0;
list-style: none;
margin-top: 25px;
}
.check-list > li {
padding-left: 35px;
padding-bottom: 12.5px;
background: url("/images/ico/draw_calligraphic.png") no-repeat left 3px;
}
.check-list2 {
padding-left: 0;
list-style: none;
margin-top: 25px;
}
.check-list2 > li {
padding-left: 35px;
padding-bottom: 12.5px;
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
}italpascal Frienditalpascal
- Join date:
- November 2014
- Posts:
- 94
- Downloads:
- 95
- Uploads:
- 34
- Thanks:
- 9
- Thanked:
- 3 times in 1 posts
September 18, 2015 at 10:13 am #748994<em>@pavit 492879 wrote:</em><blockquote>Salve
Il codice non funziona perche’ e’ sbagliato l’url all’icona
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
questo url restituisce una pagina 404 , prova a mettere le icone nel folder /templates/ja_sugite/images/ico/ e cambia l’url in
background: url("/templates/ja_sugite/images/ico/flag_destra.png") no-repeat left 3px;
Ciao Pavit, se vedi il link che ho inserito ? visibile un icona, ho inserito nel mio custom code l’icona del background in images/ico e si vede. Io pensavo che creando un check-list2 avrei potuto usare :
<ul class=”check-list2″>
<li>testo </li>
</ul>ma nel link, ovvio che ho usato :
<ul class=check-list> <— senza il 2 e funziona
<li>testo </li>
</ul>In sostanza ho questo codice :
.check-list {
padding-left: 0;
list-style: none;
margin-top: 25px;
}
.check-list > li {
padding-left: 35px;
padding-bottom: 12.5px;
background: url("/images/ico/draw_calligraphic.png") no-repeat left 3px;
}
.check-list2 {
padding-left: 0;
list-style: none;
margin-top: 25px;
}
.check-list2 > li {
padding-left: 35px;
padding-bottom: 12.5px;
background: url("/images/ico/flag_destra.png") no-repeat left 3px;
}pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 18, 2015 at 10:50 am #686200Tu puoi inserire quante checklist vuoi
Il problema e’ che e’ sbagliato il link all’icona
Guarda tu stesso sotto
pavit Moderatorpavit
- Join date:
- September 2007
- Posts:
- 15749
- Downloads:
- 199
- Uploads:
- 2274
- Thanks:
- 417
- Thanked:
- 4028 times in 3778 posts
September 18, 2015 at 10:50 am #748997Tu puoi inserire quante checklist vuoi
Il problema e’ che e’ sbagliato il link all’icona
Guarda tu stesso sotto
italpascal Frienditalpascal
- Join date:
- November 2014
- Posts:
- 94
- Downloads:
- 95
- Uploads:
- 34
- Thanks:
- 9
- Thanked:
- 3 times in 1 posts
September 18, 2015 at 11:17 am #686408Ops ! hai ragione. Ho inserito in css flag_destra.png anziche flag-destra.png
Un “undescore” al posto di un “meno”
Infatti adesso con la correzione funziona 😉E come diceva un noto giornalista in tv “che figura di …..” :-[
Comunque grazie.
RISOLTO
italpascal Frienditalpascal
- Join date:
- November 2014
- Posts:
- 94
- Downloads:
- 95
- Uploads:
- 34
- Thanks:
- 9
- Thanked:
- 3 times in 1 posts
September 18, 2015 at 11:17 am #749005Ops ! hai ragione. Ho inserito in css flag_destra.png anziche flag-destra.png
Un “undescore” al posto di un “meno”
Infatti adesso con la correzione funziona 😉E come diceva un noto giornalista in tv “che figura di …..” :-[
Comunque grazie.
RISOLTO
-
AuthorPosts
This topic contains 9 replies, has 2 voices, and was last updated by italpascal 9 years, 2 months ago.
We moved to new unified forum. Please post all new support queries in our New Forum