Fixed Template help_bb_codes.css - CSS too greedy

cclaerhout

Well-known member
Not really a bug, but if someone creates a customised bbcode using DL DT and DD html tags, then it won't display correctly in BB Codes Help Page. To solve this, the css of the template help_bb_codes.css must be updated.

From:
Code:
.bbCode  dl
To:
Code:
.bbCode > dl

From:
Code:
.bbCode  dl  dt
To:
Code:
.bbCode > dl > dt

From:
Code:
.bbCode  dl  dd
To:
Code:
.bbCode > dl > dd


Tested on IE7, IE8, IE9, Chrome, Opera, Firefox
 
Top Bottom