Quote:
Originally Posted by TheLastSuperman
For that you simply need to know how to edit the home page OR edit a template and add in some basic html code and css.
Example
Add this to additional.css (template inside of the Style Manager in Admin Control Panel of vBulletin):
Code:
.mynewclass {
width:90%
margin:10px;
padding:10px;
color:#000000;
font-size:16px;
}
Now this would be what you add into the template or your new cms system:
Code:
<div class="mynewclass">
Hi, this is the home page of our forum. Lorem Epsum Dolor Emit Blah Blah Blah
</div>
That will make the box show as you wanted.
*You can remove the width:90% IF the margin i.e. the outside white-space around the box is too much, by removing the width part of the definition it will inherit the overall width of the site minus (the containers padding AND your div containers margin).
|
Hey, thanks. I managed to figure it out.
Now, my forum is located at mysite.com. What I want to do is to make this new home page as my main index page. So when users go to mysite.com, they end up here. Then they click on the "forum" button on the nav bar and are taken to the forum.
How can I do that?
--------------- Added [DATE]1415127156[/DATE] at [TIME]1415127156[/TIME] ---------------
Currently, mysite.com is home page which goes straight to forum. And mysite.com/cmps_index.php is what goes to CMS page. I have to click on "home" from the navbar to go to this page.
I want this page to appear first when someone goes to mysite.com and then they can go to forum by clicking on the "forum" on the navbar.
How can I do this?