Vanilla 1 is no longer supported or maintained. If you need a copy, you can get it here.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Creating A Theme
Hi all,
I just finished my first round of a new fixed width style and an added footer, but it requires me to add a wrapper div and a footer div to the html.
Can someone tell me please where to find the structure to add this to? I am not a phpler (unfortunately) but I can't imagine adding this would be so hard?
Thanks for all your help! This forum rocks!
Dada
0
Comments
head.php
$BodyId = ""; if ($this->BodyId != "") $BodyId = ' id="'.$this->BodyId.'"'; echo $HeadString . '</head> <body'.$BodyId.' '.$this->Context->BodyAttributes.'> <div id="wrapper">';
End close the tag at page_end.php
echo '</div> </body> </html>';
That should be it
../themes/my_theme/ -> Changed template files go here (head.php, page_end.php)
../themes/my_theme/styles/default --> default style which contains images and css-files
../themes/my_theme/styles/new_style --> if you have different styles for this theme, add multiple folders in your style-dir
I guess you haven't got a subfolder in your styles directory.