Jump to content
  • Checkout
  • Login
  • Get in touch

osCommerce

The e-commerce.

nomen

Archived
  • Posts

    3
  • Joined

  • Last visited

Profile Information

  • Real Name
    John Doe

nomen's Achievements

  1. /catalog/includes/boxes/categories.php It is not work :( $categories_string .= '<a'; if ( ($cPath_array) && (@in_array($counter, $cPath_array)) ) { $categories_string .= ' class="activelink"'; } if ($tree[$counter]['parent'] == 0) { $cPath_new = 'cPath=' . $counter; } else { $cPath_new = 'cPath=' . $tree[$counter]['path']; } $categories_string .= ' href="'.tep_href_link(FILENAME_DEFAULT, $cPath_new); $categories_string .= '">'; // display category name if (tep_has_category_subcategories($counter) || $tree[$counter]['level'] == 0) { if ( ($cPath_array) && (@in_array($counter, $cPath_array)) ) { $categories_string .= '<span class="catwithsubs">'.tep_image(DIR_WS_IMAGES . 'categories/arrow_down.gif', '', '9', '9') . "</span>"; } else { $categories_string .= '<span class="catwithsubs">'.tep_image(DIR_WS_IMAGES . 'categories/arrow_right.gif', '', '9', '9') . "</span>"; } } else { $categories_string .= '<span class="catwithnosubs">' .tep_image(DIR_WS_IMAGES . 'categories/arrow_bullet.gif', 'nokta', '9', '9') . "</span>"; } //category name $categories_string .= $tree[$counter]['name']; if ( ($cPath_array) && (@in_array($counter, $cPath_array)) ) { //end of active link $categories_string .= ''; } if (tep_has_category_subcategories($counter)) { $categories_string .= ''; } // $categories_string .= '</a>'; $categories_string .= " "; if (SHOW_COUNTS == 'true') { $products_in_category = tep_count_products_in_category($counter); if ($products_in_category > 0) { $categories_string .= '(' . $products_in_category . ')'; } } // $categories_string .= '</a>'; //*********** // style format // *********** $categories_string .= '<style=color:"\#ffff00"></a>'; $categories_string .= '</div>';
  2. Super contrib, but one small problem. How i can change a color font-link in categories box? In stellsheet.css A { color: #000000; text-decoration: none; } Its means that all links in everyone boxes are black, but I have to change colors links only in one box - categories. I try write 'style=\"color:\#FFFFFF\' in categories.php but not result. What can I do? :huh:
  3. How i can change a color font-link in categories box? In stellsheet.css A { color: #000000; text-decoration: none; } Its means that all links in everyone boxes are black, but I have to change colors links only in one box - categories. I try write 'style=\"color:\#FFFFFF\' in categories.php but not result. What can I do? :huh:
×
×
  • Create New...