I have the same problem but I am not able to follow your instructions UntouchableS because I have no idea of PHP.
I also tried to directly add the links like you did as first try. I had no problems with fonts but I had the problem when
I deactivated the categories which were shown in the top menu, the direct links also disappeared.
So may you or someone else explain your second solution?
$this->load->model('catalog/product');
$products_1 = $this->model_catalog_product->getProducts($data = array());
if ($products_1) {$output = '<ul id="topnav">';}
foreach ($products_1 as $product_1) {
$output .= '<li>';
$unrewritten = $this->url->link('product/product', 'product_id=' . $product_1['product_id']);
$output .= '<a href="'.($unrewritten).'">' . $product_1['model'] . '</a>';
}
if ($products_1) {$output .= '</ul>';}
echo $output;
?>
Which date file is ment? Where in the data file has something to be changed? Do I only have to Just copy the stuff above into the correct line? Or is it more tricky?