Problem with JQuery.

Djack

Member
Hello,
I'm trying to integrate a new theme for my toplist with the Jquery website.
I've put the css folder into the skin folder, and i've made this update in wrapper.html:

Code:
  <link rel="stylesheet" type="text/css" media="screen" href="skins/{$skin_name}/swanky-purse/jquery-ui-1.8.18.custom.css" />
But nothing happen in my toplist, so what can i do?

Thanks,
Djack
 

Basti

Administrator
Staff member
You properbly have a path issue there.
When you unzip the themeroller bundle there is the css folder. Either you can upload that folder directly, then the path would be
Code:
  <link rel="stylesheet" type="text/css" media="screen" href="skins/{$skin_name}/css/custom-theme/jquery-ui-1.8.18.custom.css" />
as you said youve uploaded the css folder.

With your current path you would need to rename the folder inside the css folder to "swanky-purse" and upload that folder into your skin and it should work.
 
Top