Quote:
Originally Posted by MoB Dudditz MD
When I use this as a vBa column 200px wide, the text does not wrap and there is empty space on the left-nor will it interact with custom css
Any way to get the text to wrap?
Or to control the CSS in order to modify font color?
TY
|
The problem is in how the style sheet is apply the padding to the list that the feeds are in.
Here's a fix for now.
In the file abouttoday.php, around line 1564 AND 1568
FIND:
PHP Code:
$dtodayx = "<ul class='smallfont' ul class='smallfont'>
REPLACE WITH:
PHP Code:
$dtodayx = "<ul class='smallfont' ul class='smallfont' style=\"margin-left:-20px\">
Do the same thing in the file includes/cron/cron_abouttoday.php on lines 273 AND 277. You may need to adjust the value of margin-left to get the optimum look for your board. You may be able to modify it so your custom CSS is used too. Let me know how it goes!
Note that once you make this change, you'll need to do a manual refresh (Force RSS Update from abouttoday.php) of the feeds to see the result.