MyBB Community Forums

Full Version: Business Theme
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13
@Elpiojo2005 you could try SCEditor. Most users prefer WYSIWYG editors, and this one has worked for me with all themes from eNvy until now.
For anyone having this issue in the navigation menu...

[Image: Bsvnq2L.png]


If you go to AdminCP -> Templates & Style -> Templates -> (Your template) -> Header Templates -> header

Find this...
<div class="menu">
<ul>
<li><a href="{$mybb->settings['bburl']}/portal.php" id="por">Portal</a></li>
<li><a href="{$mybb->settings['bburl']}/index.php" id="foro">Forum</a></li>
<li><a href="{$mybb->settings['bburl']}/search.php" id="busqueda">Search</a></li>
<li><a href="{$mybb->settings['bburl']}/memberlist.php" id="miembros">Members</a></li>
<li><a href="{$mybb->settings['bburl']}/calendar.php" id="calendario">Calendar</a></li>
<li><a href="{$mybb->settings['bburl']}/misc.php?action=help" id="ayuda">Help</a></li>
</ul>
</div>

and remove all <li></li> tags
That's weird o.O, but I see it works "Magically".
I am new to MyBB ... and noticed on this theme there is a "Sidebar Content" section of the page.

How would the admin put information (text images, etc) into that area?

Also, can you make more "Content" areas?

Thanks
(2014-08-18, 05:48 AM)MMOrty Wrote: [ -> ]I am new to MyBB ... and noticed on this theme there is a "Sidebar Content" section of the page.

How would the admin put information (text images, etc) into that area?

Also, can you make more "Content" areas?

Thanks

ACP > Templates & Styles > Templates > Business Templates > Index Page Templates > Index

There, you need to find this:

Quote:<div class="sidebar" style="float: right; width: 23%;">

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse.gif" id="ths_img" class="expander" alt="[-]" title="[-]" /></div>
<strong>Sidebox</strong>
</td>
</tr>
<tr>
<td class="trow4" style="{$collapsed['ths_e']}" id="ths_e">

Content

</td>
</tr>
</table>

</div>

If you want to modify the content and add images, text, or whatever you want, there you have the "Content". Simply put your code there.

If you want to add more, you need to do this steps:

1- Copy all the code I put there and paste under the first.

2- You need to modify this things:

Quote:<div class="sidebar" style="float: right; width: 23%;">

<table border="0" cellspacing="{$theme['borderwidth']}" cellpadding="{$theme['tablespace']}" class="tborder">
<tr>
<td class="thead">
<div class="expcolimage"><img src="{$theme['imgdir']}/collapse.gif" id="ths_img" class="expander" alt="[-]" title="[-]" /></div>
<strong>Sidebox</strong>
</td>
</tr>
<tr>
<td class="trow4" style="{$collapsed['ths_e']}" id="ths_e">

Content

</td>
</tr>
</table>

</div>
RED: The ID of the button to colapse that sidebar. You need to modify to another 3 letters (Put what you want, but modify for each sidebar you create).

Example: asd_imgasd_e and asd_e again.


BLUE: The name of the sidebar. In this case, Sidebox, but you can change to anything.


Example: Advertisements


GREEN: The content of the sidebar. Put whatever you want there.


Example: <img src="route of your image"/>


Hope you understand me ^^.


Greetings!
Envy, if you don't mind me asking what all are we allowed to change on this theme?
All except the credits.

If you want to remove codes, replace CSS styles, or re-do all the templates with your liking, it's your choice =).
Love the theme. Regarding the profile tabs, is there anyway to stop the page from jumping to the top when you click on a tab?
I see that but I don't check why that happens... Give me some time and I will check why the tabs do that Toungue.

EDIT: Find the solution =)

ACP > Templates & Styles > Styles > Business > global2.css

Search this class:

Quote:.tabs input[type=radio]

Replace all the class with this:

Quote:.tabs input[type=radio] {
display: none;
}
Works perfectly, thank you!
Pages: 1 2 3 4 5 6 7 8 9 10 11 12 13