Please upgrade here. These earlier versions are no longer being updated and have security issues.
HackerOne users: Testing against this community violates our program's Terms of Service and will result in your bounty being denied.
Google Adsense 728 X 90 ad Leaderboard
Prosper
✭✭
Please can some help me fix the problem of resizing the content width of my forum home page [naijanetwork.com] (www.naijanetwork.com) to fit Google Adsense 728 X 90 leaderboard. I have already applied the solution [vanillaforums.org/discussion/18666] already on the issue by ended up pushing the side-panel down. I will appreciate your answers?
Tagged:
0
Best Answer
-
ddumont ✭✭
I've made a custom theme based off the original that has the following css:
#Body { width: 990px; } #Content { width: 730px; } body.Profile #Content { width: 730px; margin: 0 0 40px 10px; }
There was an error rendering this rich post.
1
Answers
maybe @ddumont can help, he has it on his forum http://forum.canofsleep.com/
Look at our fruit theme in addons. You can check the custom.css see how we did it
http://vanillaforums.org/addon/fruit-theme
There was an error rendering this rich post.
I've made a custom theme based off the original that has the following css:
There was an error rendering this rich post.
Nice ^5
There was an error rendering this rich post.
Thank you guys for all your help, actually I figured it out. I went to applications/dashboard/design/style.css and change widths as
}
Body {
width: 990px;
text-align: left;
margin: 15px auto 0;
}
Content {
float: left;
width: 728px;
margin: 0 0 40px;
}
and it is working for me right now. You can check it out at http://naijanetwork.com
Prosper, it's recommended to make those changes through a theme, as making them in the application core files will make upgrades more painful.
Vanilla Wiki, Tastes Great! 31,000 viewers can't be wrong. || Plugin Development Explained
Please how do I go about making the changes through a theme?
http://vanillaforums.org/docs/configuration-dashboardappearancethemes
http://vanillaforums.org/docs/themeguide/toc
There was an error rendering this rich post.