Yes it is definatlly the css clashing I had this issue my self when porting to dragonfly. I know we had to do some mojor madifications to the css of wowrosterdf by making all the css classes.
Something simular to this
- Code: Select all
/* Added for rosterDF */
.wowroster {
font-family:arial,helvetica,sans-serif;
color:#ffffff;
font-size:12px;
}
/* Added for rosterDF */
.wowroster a:link {
color:#CBA300;
text-decoration:none;
font-weight:bold;
}
/* Added for rosterDF */
.wowroster a:visited {
color:#CBA300;
text-decoration:none;
font-weight:bold;
And then some edits to each of the files like roster_header.php
- Code: Select all
<div class="wowroster"<?php print( !empty($roster_conf['roster_bg']) ? ' style="background-image:url('.$roster_conf['roster_bg'].');"' : '' ); echo (isset($body_action) ? ' '.$body_action : ''); ?>>
I hope this helps you out.