pbouk
Member
Posted 11 months ago #
The plugin installed fine. Everything is working but when I click on the link to the forum topic the page that displays doesn't have any css. The link to the page with css is:
http://www.canadianantiquetractor.com/tractorforum/viewtopic.php?f=8&t=856&sid=d771d3a82ed151878e6eebcd8e4b2877#p5684
The link with no style that shows up when you click the side bar forum topic link is:
http://www.canadianantiquetractor.com/tractorforum/index.php/viewtopic.php?p=5992#p5992
Any suggestions would be helpful and appreciated. Thanks.
It's probably related to the relative links in your source.
<link href="./styles/antique_tractor/theme/normal.css" rel="stylesheet" type="text/css" title="A" />
<link href="./styles/antique_tractor/theme/medium.css" rel="alternate stylesheet" type="text/css" title="A+" />
<link href="./styles/antique_tractor/theme/large.css" rel="alternate stylesheet" type="text/css" title="A++" />
As an unregistered user the resulting URL becomes http://www.canadianantiquetractor.com/tractorforum/index.php/styles/antique_tractor/theme/normal.css ... which obviously doesn't work.
I hope that helps,
Kind Regards,
Nick
I'm having the same problem, no css style, could explain what to do with those relative links/source - point out where I'm supposed to be looking.
Thanks
replace
<link href="./styles/mytheme/yourstyle.css" rel="stylesheet" type="text/css" />
with
<link href="http://www.example.com/styles/mytheme/yourstyle.css" rel="stylesheet" type="text/css" />
HTH