Press Ctrl / CMD + C to copy this to your clipboard.
This post will be reported to the moderators as potential spam to be looked at
Hi
It seems that contour puts its stylesheet inside the body tag. And this does not validate. How can I target the stylesheet to end up in the head?
Comment author was deleted
Hi Johan,
If you set a runat="server" attribute to your head it will be inside the head tag
Or you could also add it manually (and disable that it get's added automaticly)
That did the trick. Thanks
<head runat="server" >
Actually. It worked, but it also adds an extra title tag.
I solved it by adding
<title runat="server" visible="false" />
just after the head tag
is working on a reply...
Write your reply to:
Upload image
Image will be uploaded when post is submitted
Stylesheet
Hi
It seems that contour puts its stylesheet inside the body tag. And this does not validate. How can I target the stylesheet to end up in the head?
Comment author was deleted
Hi Johan,
If you set a runat="server" attribute to your head it will be inside the head tag
Or you could also add it manually (and disable that it get's added automaticly)
That did the trick. Thanks
<head runat="server" >
Actually. It worked, but it also adds an extra title tag.
I solved it by adding
<title runat="server" visible="false" />
just after the head tag
is working on a reply...