(I posted this to tech support as a ticket but thought I'd post here to give you a heads up and see if anyone else has encountered this and possibly found a workaround)
I am trying to update the category_0.html file and clean up some of the code. I am trying to remove the use of the <font> tag (since it has been deprecated a long time ago) and replace it with CSS styles.
I discovered that changing ANYTHING in the sections marked between the
<!--START: PAGING--> <!--END: PAGING--> tags would mess up the links, even if the code was completely valid. Simply changing this line:
to
would break everything, and cause the links to look as they do in this image:
http://dl.dropbox.com/u/626153/3DCart_links.png
This is clearly a bug in the template system and is preventing me from customizing my site.
Thanks
I am trying to update the category_0.html file and clean up some of the code. I am trying to remove the use of the <font> tag (since it has been deprecated a long time ago) and replace it with CSS styles.
I discovered that changing ANYTHING in the sections marked between the
<!--START: PAGING--> <!--END: PAGING--> tags would mess up the links, even if the code was completely valid. Simply changing this line:
PHP Code:
<a href="view_category.asp?cat=[cat]&sortby=[sortby]&page=[prev]">[category_previouspage]</a>
PHP Code:
<a href="view_category.asp?cat=[cat]&sortby=[sortby]&page=[prev]">test</a>
http://dl.dropbox.com/u/626153/3DCart_links.png
This is clearly a bug in the template system and is preventing me from customizing my site.
Thanks
Comment