Hi!
The validator reports an error related to the links generated within the function theme_controlpanel_panel_view(). It seems anchor tags can't contain div elements. Also the IMG and BR tags are not correctly terminated.
Maybe instead of:
<a href=...>
<div>
<img src=... >
<br> ...title...
</div>
</a>
Something like this?
<a href=...>
<span style="display:block;">
<img src=... />
<br /> ...title...
</span>
</a>
| Comment | File | Size | Author |
|---|---|---|---|
| #4 | controlpanel.module.patch | 3.17 KB | markus_petrux |
| #2 | controlpanel.module | 10.39 KB | markus_petrux |
Comments
Comment #1
markus_petrux commentedAnother little problem, fieldsets are not correctly closed. hmm...
Comment #2
markus_petrux commentedI hope it helps, I have fixed the above mentioned issues and a couple more related to output generated by this module.
Please, see attached file.
Comment #3
dreed47 commentedThanks Markus, but can you provide this in a patch instead of the whole module?
Thanks
Comment #4
markus_petrux commentedOh sorry, I just started to use the 'generate patch' function in WinMerge yesterday.
Please see attached file.
Comment #5
dreed47 commentedpatch applied
Comment #6
(not verified) commented