1 eblog Aug 08, 2004 01:13
3 eblog Aug 08, 2004 15:44
Thanks that works.
However a pieces of code are obviously missing in my skin because several things are not working (no error message though) :
#
url_add_param(get_bloginfo('blogurl', $curr_blogparams), 'cat='.$cat_ID)
I get a blank instead of the cat_ID number
#
file_exists()
is_readable()
These are never true, even if the path and permissions are correct.
I can view the image directly in my browser and display it in the skin,
but I can't do the above checkings.
#
<link rel="stylesheet" type="text/css" href="LMB.css" />
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo dirname(__FILE__).'/LMB.css';?>" />
The page isn't styled with that code.
(however when I switch to the custom skin, the page IS styled with href="custom.css" )
I must use :
<link rel="stylesheet" type="text/css" media="screen" href="<?php echo $skins_url.'/LMB.css';?>" />
Note : I am running the blog in a directory external to the one where b2e is installed.
Any ideas ?
4 eblog Aug 08, 2004 15:55
ermm wait a minute, I just discovered
<base href="<?php skinbase(); // Base URL for this skin. You need this to fix relative links! ?>" />
try