zmimi83
Junior Member   Posts: 20 Registered: 9/20/2004 Status: Offline
|
posted on 8/6/2008 at 04:25 AM |
Hi there,
I want to recover the standard presentation of the Admin page (with the
thumb index) !
Is someone an idea ?
[Edited on 6/8/2008 by zmimi83] |
| |
| |
quickfox
Newbie   Posts: 4 Registered: 8/4/2008 Status: Offline
|
posted on 8/15/2008 at 03:08 AM |
<!--[modulestylesheet xhtml=true]--> in Xanthia thats the solution to
all our problems with theme display. I couldn't find similar AT command
 |
| |
Shawn
Administrator   Posts: 4575 Registered: 10/7/2002 Status: Online
|
posted on 8/15/2008 at 10:04 AM |
Ignore that, I have no idea what he's saying. Add this to the head of your
DOCTYPE template:
<link rel="stylesheet" href="system/Admin/pnstyle/navtabs.css"
type="text/css">
<link rel="stylesheet" href="system/Admin/pnstyle/admin.css"
type="text/css">
<link rel="stylesheet" href="javascript/style.css"
type="text/css">
Most likely
'modules/AutoTheme/templates/zikula/HTML401_Transitional.html'
-Shawn |
| |
quickfox
Newbie   Posts: 4 Registered: 8/4/2008 Status: Offline
|
posted on 8/15/2008 at 02:52 PM |
Well this fix will help him to have tabs back, but nothing else. I have
spent some time to figure how this command work.
Lets have an example:
We need to change block order. With this fix it won't work why?
We have hardcoded:
<link rel="stylesheet" href="system/Admin/pnstyle/navtabs.css"
type="text/css">
<link rel="stylesheet" href="system/Admin/pnstyle/admin.css"
type="text/css">
<link rel="stylesheet" href="javascript/style.css"
type="text/css">
But if we want to do this trick we need:
<link rel="stylesheet" href="system/Admin/pnstyle/navtabs.css"
type="text/css" />
<link rel="stylesheet" href="system/Blocks/pnstyle/style.css"
type="text/css" />
<link rel="stylesheet" href="system/Admin/pnstyle/admin.css"
type="text/css" />
<script type="text/javascript">/* <![CDATA[ */
document.location.entrypoint="index.phtml";
document.location.pnbaseURL="http://www.zlotylas.org/"; /* ]]>
*/</script>
<script type="text/javascript"
src="javascript/ajax/prototype.js"></script>
<script type="text/javascript"
src="javascript/ajax/pnajax.js"></script>
<script type="text/javascript"
src="javascript/ajax/scriptaculous.js"></script>
<script type="text/javascript"
src="javascript/ajax/behaviour.js"></script>
<script type="text/javascript"
src="system/Blocks/pnjavascript/blocks.js"></script>
And here comes this Xanthia command <!--[modulestylesheet
xhtml=true]-->
It puts the whole code in your output automaticlly.
[Edited on 15/8/2008 by quickfox] |
| |