Hi All,

I have a bunch of custom sideboxes that become active when a parent category is entered. They pop up and display size categories.

Example link to site is here.

I have been trying to add URLs to each of these boxes which direct the user back to their parent category. I tried doing it like this:

PHP Code:
define('BOX_HEADING_TROUSERS_SIZES_SIDEBOX''<a href="/index.php?main_page=index&cPath=1_5"> Trousers'); 
.......and I was sure it was working well until I noticed that this isn't only adding the URL to the title text in the header of each box, but it's also adding the same URL to the whitespace, i.e., the background of the sidebox contents.

This is no use to me as it makes it too ambiguous as to whether you're clicking the text links, or the background.

Can anyone tell me how I should have added the URL to the title text as my method is obviously wrong

I'm sure this will be simple to any of you guys, I'm still getting to grips with php.