Thread: CSS Question
View Single Post
  #7 (permalink)  
Old 02-28-2008, 01:12 PM
admin admin is offline
Administrator
 
Join Date: Sep 2006
Posts: 328
Default

I think your issue is a path issue.

remove this from your index.php code
../../texaswebworks/
what your looking for >
Code:
<link href="<?php echo "../../texaswebworks/$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css";?>" rel="stylesheet" type="text/css" media="all" />
look like this >
Code:
<link href="<?php echo "$GLOBALS[mosConfig_live_site]/templates/$GLOBALS[cur_template]/css/template_css.css";?>" rel="stylesheet" type="text/css" media="all" />