Shape 5

Joomla Templates => Sports Nation - Club => : carissict December 06, 2012, 09:00:02 AM



: drop down panel tab link
: carissict December 06, 2012, 09:00:02 AM
hi there

please see my test site here: http://test.cariss.co.uk/vvue/

im using the drop down panel as you can see top right. id like to make this just a straight forward hyperlink to another page, not a drop down. so clicking on the button just opens up another page. is there a way i can modify the module to allow this?

cheers


: Re: drop down panel tab link
: mikenicoll December 06, 2012, 06:47:13 PM
Hello,

This is possible but would require custom programming of the core files which we do not offer via the forums. I think it might be easier to just create a new module in that position though and set it up as a Custom HTML URL redirect.

Here is how you would create a new module:

In the Index.PHP file you would add this code relative to where you want it to be in the layout:

<div id="s5_newmodule">
<?php s5_module_call('s5_newmodule','notitle'); ?> </div>

In the TemplateDetails.xml you would add this code in the <positions> section

<position>s5_newmodule</position>

In the Template.CSS file you would add this so you can position the module on the page:

#s5_newmodule {
position: absolute;
top: 0px;
left: 0px;}

-Mike