Ok. This appears to work. It's functional... but (see below):
Code: Select all
if ($row['st_nav_radius'] > 0){
$cssstring .="
-webkit-border-radius: ".$row['st_nav_radius']."px ".
$row['st_nav_radius']."px ".$row['st_nav_radius']."px ".$row['st_nav_radius']."px;
border-radius: ".$row['st_nav_radius']."px ".
$row['st_nav_radius']."px ".$row['st_nav_radius']."px ".$row['st_nav_radius']."px;
-moz-border-radius: ".$row['st_nav_radius']."px ".
$row['st_nav_radius']."px ".$row['st_nav_radius']."px ".$row['st_nav_radius']."px;";
When I click to an internal page and use the back button to come back, I get this:
Code: Select all
Parse error: syntax error, unexpected '}' in /home/content/53/8731253/html/new/modules/Showtime/Showtime.module.php on line 237
If I then refresh the page, it shows up fine and the error is gone. Also still not sure why numbers are showing when it's unchecked. Any thoughts are appreciated. Thanks.