Indirect modification of overloaded element of cms_variables
-
- Support Guru
- Posts: 8169
- Joined: Tue Oct 19, 2004 6:44 pm
Re: Indirect modification of overloaded element of cms_varia
The {stylesheet} plugin was deprecated in CMSMS 1.8 and no longer works in CMSMS 1.11. You now need to change your templates to use {cms_stylesheet}
Follow me on twitter
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Please post system information from "Extensions >> System Information" (there is a bbcode option) on all posts asking for assistance.
--------------------
If you can't bother explaining your problem well, you shouldn't expect much in the way of assistance.
Re: Indirect modification of overloaded element of cms_varia
Since {cms_stylesheet} now exists in tmp/ and not the document root, you'll need to change lines like:
background-image: url(uploads/images/background.jpg);
to
background-image: url([[root_url]]/uploads/images/background.jpg);
background-image: url(uploads/images/background.jpg);
to
background-image: url([[root_url]]/uploads/images/background.jpg);
Re: Indirect modification of overloaded element of cms_varia
Or url(../../uploads/*******)...