MyBB Community Forums

Full Version: Simple theme edit?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
How would I delete this space so its all one?

[Image: FY0F2.png]

You can also see it live @ forumkorner.com

Thanks
In header template (ACP -> templates and styles ->templates -><your theme template set> -> header templates -> header find

Quote:<br/>
<hr class="hidden"/>

and remove <br /> tag
That worked perfect thank you. What about removing the space on the below picture?

[Image: pdmkn.png]

Thanks in advance!
1. Go to Admin CP > Templates & Style > Themes > Your Theme > tabbed.css > Advanced Mode.

2. Find:

.shadetabs {
	padding: 1px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font: bold 12px Verdana;
	list-style-type: none;
	text-align: center;
}

3. Replace with:

.shadetabs {
	padding: 1px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: -15px;
	font: bold 12px Verdana;
	list-style-type: none;
	text-align: center;
}

(change the -15px to something else if you want)

4. Save the stylesheet.
You will need few template edits (removing <br class="clear" /> and moving sidebar buttons on other location since they are adding 16px height between tabs and thead) for that.

Edit:nvm.
(2011-12-31, 11:47 PM)Fábio Maia Wrote: [ -> ]1. Go to Admin CP > Templates & Style > Themes > Your Theme > tabbed.css > Advanced Mode.

2. Find:

.shadetabs {
	padding: 1px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: 0;
	font: bold 12px Verdana;
	list-style-type: none;
	text-align: center;
}

3. Replace with:

.shadetabs {
	padding: 1px 0;
	margin-left: 0;
	margin-top: 1px;
	margin-bottom: -15px;
	font: bold 12px Verdana;
	list-style-type: none;
	text-align: center;
}

(change the -15px to something else if you want)

4. Save the stylesheet.

That did the trick! Smile Thank you very much.
(2012-06-28, 01:24 PM)McLovin123 Wrote: [ -> ]I sort of have the same problem
http://community.mybb.com/thread-121334-...76636.html

Did this not solve it or...? Link me to your forum please.