MyBB Community Forums

Full Version: side bars
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2 3
ahero4heor Wrote:Well, if you want the image like that it'll have to be treated similar to a background but not exactly a background. I'm not exactly sure how to say it, but nothing would be clickable since the image is in front.

I understand what you're saying... is there a way to do it with padding, then?

edit
Trying making the sidebars two seperate images instead of one... But unfortunately I can only have one background image. The only work arounds I've seen is using <div> tags, but I can't use them in MyBB. (I think?)
Snowy Wrote:ps..template? Shy

It should be in your pm box tomorrow; I promise.
You should be able to use divs, I think. It'll probably take some template edits to get this all working, not to mention adding some CSS as well... I'm not sure how far you can push MyBB in theming, I have never tried nor have ever been told.
ahero4heor Wrote:I'm not sure how far you can push MyBB in theming, I have never tried nor have ever been told.

You can push it over the edge. Wink I can turn it an entire 360 degrees. If I do that, you wouldn't be able to tell if it's MyBB or not unless you view the code or copyright in the footer.
Apparently though, I can't push it very far. Toungue
o.0 Me neither. I can push it up and down and all around, bit it won't go off the edge!! Grrr...
Nice site. Smile Once the themes sorted it should look great

Need any help with it? Toungue
Yeah, just a little help Rolleyes

Since nobody's really been able to help me too much with sidebars, perhaps some other problems I'm facing...
click click screenshot! click click!

thanks. Shy
For the icons

ACP > Templates > Modify / Delete >* Expand the theme you want to change * > header > edit

Find

			<div class="menu">
				<ul>
					<li><a href="{$mybb->settings['bburl']}/search.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/search.gif" alt="" />{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/memberlist.gif" alt="" />{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/calendar.gif" alt="" />{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help"><img src="{$mybb->settings['bburl']}/{$theme['imgdir']}/toplinks/help.gif" alt="" />{$lang->toplinks_help}</a></li>
				</ul>
			</div>
Replace with

			<div class="menu">
				<ul><div align="center">
					<li><a href="{$mybb->settings['bburl']}/search.php">{$lang->toplinks_search}</a></li>
					<li><a href="{$mybb->settings['bburl']}/memberlist.php">{$lang->toplinks_memberlist}</a></li>
					<li><a href="{$mybb->settings['bburl']}/calendar.php">{$lang->toplinks_calendar}</a></li>
					<li><a href="{$mybb->settings['bburl']}/misc.php?action=help">{$lang->toplinks_help}</a></li>
				</div></ul>
			</div>

For the welcome box can you show me the contents
Thanks for that jag. Smile

What do you mean show you the contents?

Oh, and I ran into this little bugger when making a new thread:
screenshot click click screenshot
Obviously, the thead_bg.gif expands too much. It does this in private messages and user cp. And I guess anywhere else the forum contains thead_bg

edit
it appears that setting the table border to a pixel dimensions (825) causes this problem. Currently testing %'s work, however
Pages: 1 2 3