Hi,
To get the jquery working it might be a good idea to do it the same way as the Dnn slide for the gravity skin...
If you go to :
Portals/_default>Containers>Gravity you will see a file called Banner.ascx, this is the file that is used to create the slide for the skin.
Instead of trying to load the jquery script in the skin file it is a better idea to create a dedicated container this means that the script will only load when needed ( when you choose the container )
I would suggest for you to create a new container and call it 'cycleBanner.ascx' or something like that in your container folder of your skin.
If you have a look at the code in the banner.ascx you will see:
<%@ Register TagPrefix="dnn" Namespace="DotNetNuke.Web.Client.ClientResourceManagement" Assembly="DotNetNuke.Web.Client" %>
You should be able to use the jquery.cycle slider in the same way.
at the top, this imports the clientresourcemanagement namespace
and the next line you should look for is:
<dnn:DnnJsInclude runat="server" FilePath="~/Resources/Shared/Scripts/slides.min.jquery.js" />
This line will include the jquery file you want to use
Place the jquery files in the skin folder under "js" for example.
then, in you new container add the following line:
<dnn:DnnJsInclude ID="DnnJsInclude1" runat="server" FilePath="js/ <jquery filename>.js" PathNameAlias="SkinPath" ForceProvider="DnnFormBottomProvider" />
this should then include the jquery file you want to use
I hope that it is a bit clear for you.
Regards,
Geoff