Embedded forum issues
Hey all,
I'm having some issues with the embed vanilla plugin...I've got it working pretty well, and even using the Embed friendly theme - but there are bits and pieces of the forum still being cut off, as if the window is too small.
Any way to fix this?
Can I make the window larger?
I'm having some issues with the embed vanilla plugin...I've got it working pretty well, and even using the Embed friendly theme - but there are bits and pieces of the forum still being cut off, as if the window is too small.
Any way to fix this?
Can I make the window larger? 0
Best Answer
-
422
MVP
first off in style.css#content { float: left; margin-top: -10px; width: 1024px; }
That will make embed same size as menu ?
There was an error rendering this rich post.
0
Answers
There was an error rendering this rich post.
http://tordrive.com/forums.html
#content { float: left; margin-top: -10px; width: 1024px; }That will make embed same size as menu ?
There was an error rendering this rich post.
Basically in themes, create a new folder called mytheme ( or whatever ) and inside that a new folder called design and you copy style.css from (themes/vanilla/design ) into this new folder.
Then make changes to this style.css file, and re upload to themes/mythemes/design/style.css
Then in dashboard, change to your new theme.
There was an error rendering this rich post.
There was an error rendering this rich post.
Customize the code to suit your OWN style.
<?php if (!defined('APPLICATION')) exit();
Sample about.php for you/*
Copyright 2008, 2009 Vanilla Forums Inc.
This file is part of Garden.
Garden is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
Garden is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with Garden. If not, see <http://www.gnu.org/licenses/>.
Contact Vanilla Forums Inc. at support [at] vanillaforums [dot] com
*/
/**
* An associative array of information about this application.
*/
$ThemeInfo['Mytheme'] = array(
'Name' => 'Mytheme',
'Description' => "Custom theme for TorDrive.",
'Version' => APPLICATION_VERSION,
'Author' => "Joe Bloggs",
'AuthorEmail' => youremail@email.com',
'AuthorUrl' => 'http://tordrive.com/'
);
There was an error rendering this rich post.
There was an error rendering this rich post.
You said mythemes/..would that also be Themes?
The about.php must be done because in dashboard the theme activated and description stuff use the code in the about file to access your specific code, need help just gimme. Shout
There was an error rendering this rich post.
There was an error rendering this rich post.
There was an error rendering this rich post.
There was an error rendering this rich post.
It's quite complex working with CSS , but easy when you get going.
There was an error rendering this rich post.
There was an error rendering this rich post.