CAUSE: This issue occurs because the 'BFA Subscribe' widget is in the form of a table while most other widgets are in the form of an unorder list and the widget styling only is set up to style an unordered list
REFERENCE: http://forum.bytesforall.com/showthread.php?t=8075
FIX: edit css.php and find line 645-652 (version 3.5.1/3.5.2) which will be
HTML Code:
div.widget ul li a:link,
div.widget ul li a:visited,
div.widget ul li a:active {
text-decoration: none;
font-weight: normal;
color: #<?php echo $bfa_ata['widget_lists']['link-color']; ?>;
font-weight: <?php echo $bfa_ata['widget_lists']['link-weight']; ?>;
}
HTML Code:
div.widget td a:link,
div.widget td a:visited,
div.widget td a:active,
div.widget ul li a:link,
div.widget ul li a:visited,
div.widget ul li a:active {
text-decoration: none;
font-weight: normal;
color: #<?php echo $bfa_ata['widget_lists']['link-color']; ?>;
font-weight: <?php echo $bfa_ata['widget_lists']['link-weight']; ?>;
}
HTML Code:
div.widget ul li a:hover {
color: #<?php echo $bfa_ata['widget_lists']['link-hover-color']; ?>;
}
HTML Code:
div.widget td a:hover,
div.widget ul li a:hover {
color: #<?php echo $bfa_ata['widget_lists']['link-hover-color']; ?>;
}
css.php.zip







Hybrid Mode
