Bonjour,
Je suis en train de revoir le design de mon phpbb3.
Je suis partis du style prosilver, que j'adapte.
Je bloque sur la mise en page des "pagination" :
Exemple
J'ai changer le template en remplaçant les listes qui permettais la mise en page par un tableau, et je n'ai pas toucher au code qui gérait la pagination ... mais rien à faire ça ne veux pas fonctionner
Les lignes censé intervenir :
J'ai tester un code minimaliste et ça fonctionne parfaitement, j'ai même copier toute la source en incluant les feuilles de style et ça fonctionne aussi
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33 /* Pagination in viewforum for multipage topics */ .row .pagination { display: block; float: left; width: auto; margin-top: 2px; padding: 1px 0 1px 15px; font-size: 0.9em; background: none 0 50% no-repeat; } .row .pagination span a, li.pagination span a { background-color: #FFFFFF; } .row .pagination span a:hover, li.pagination span a:hover { background-color: #d2d2d2; } /* Pagination in viewforum for multipage topics */ .row .pagination { background-image: url("{T_THEME_PATH}/images/icon_pages.gif"); } .row .pagination span a, li.pagination span a { background-color: #FFFFFF; } .row .pagination span a:hover, li.pagination span a:hover { background-color: #368AD2; }
Je ne vois pas ce qui cloche
Et je n'arrive pas non plus à régler la hauteur de ligne
Pouvez-vous m'aider ?
Partager