MyBB Community Forums

Full Version: Theme questions
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
One thing at a time:

You're running a modded theme. Maybe the author has missed adding, or keeping the "Additional CSS" at the bottom of the theme.

See if this is there... If it's not, then post what you have in there.

I don't use the MyBB theme system if I can avoid it. I use external .css apart from the the 3 items that someone thought would be a good idea if it was controlled by the Db... Sad NOT a good idea!!!

.quote_header {
	background: #fff;
	border: 1px dashed #000;
	border-bottom: 0;
	color: #000;
	font-weight: bold;
	margin: 8px auto 0 auto;
	padding: 4px;
}

.quote_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
}
Where do you get all these code "Lopalong"? Are they default codes? Cause mine was kinda empty nothing was at the "Additional CSS".....
I thought that that may have been one problem, because if the server stalls while trying to save the theme, it sometimes loses the extra .css.

I doubt that you would be running external .css, so add this to the "Additional css. Smile

/*MyBB Extra .css bits*/

img {
	border: none;
}

.clear {
	clear: both;
}

.hidden {
	display: none;
	float: none;
	width: 1%;
}

.float_left {
	float: left;
}

.float_right {
	float: right;
}

.menu ul {
	list-style: none;
	margin: 0;
}

.menu li {
	display: inline;
	padding-left: 5px;
}

.menu img {
	padding-right: 5px;
	vertical-align: top;
}

#panel .links {
	margin: 0;
	float: right;
}

.expcolimage {
	float: right;
	width: auto;
	vertical-align: middle;
}

img.attachment {
	border: 1px solid #E9E5D7;
	padding: 2px;
}

.pagenav {
	font-weight: bold;
}

.pagenavbit {
	padding-left: 3px;
}

.pagenavbit a {
	text-decoration: none;
}

.pagenavcurrent {
	font-weight: bold;
	padding-left: 3px;
}

hr {
	color: #000000;
	height: 0px;
	border: solid #343233 0px;
	border-top-width: 1px;
}

#copyright {
	font: 11px Verdana, Arial, Sans-Serif;
	margin: 0;
	padding: 10px 0 0 0;
}

#debug {
	float: right;
	text-align: right;
	margin-top: 0;
}

.quote_header {
	background: #fff;
	border: 1px dashed #000;
	border-bottom: 0;
	color: #000;
	font-weight: bold;
	margin: 8px auto 0 auto;
	padding: 4px;
}

.quote_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
}

.code_header {
	background: #fff;
	border: 1px dashed #000;
	border-bottom: 0;
	color: #000;
	font-weight: bold;
	margin: 8px auto 0 auto;
	padding: 4px;
}

.code_body {
	background: #fff;
	border: 1px dashed #000;
	border-top: 0;
	color: #000;
	padding: 4px;
	margin: 0 auto 8px auto;
	font-family: Monaco, Consolas, Courier, monospace;
	font-size: 12px;
}
.usercpnav {
	list-style: inside;
	padding: 0;
	margin: 0;
}

.usercpnav li {
	padding: 1px;
	font-size:11px
}

.usercpnav .pmfolders {
	/* PM folders on the UCP Nav menu */
}

.subforumicon {
	border: 0;
	vertical-align: middle;
}

.separator {
	margin: 5px;
	padding: 0;
	height: 0px;
	font-size: 1px;
	list-style-type: none;
}

form {
	margin: 0;
	padding: 0;
}

.popup_menu .popup_item_container {
	margin: 1px;
	text-align: left;
}

.popup_menu .popup_item {
	display: block;
	padding: 3px;
	text-decoration: none;
	white-space: nowrap;
}

.popup_menu a.popup_item:hover {
	text-decoration: none;
}

.autocomplete {
	text-align: left;
}

You can see where to adjust the quote-box etc... Then we'll do the text input boxes. Wink
Another help need lol from where do i change the two buttons colour which i have pointed with red arrows in the screenshot. Please take a look.
You need to add "classes" to Tikitiki's Mod..

I just happened to have this laying around.. Wink

Remove the four lines of data in the plugin and replace it with this.

		$data = "<form method=\"post\" action=\"./quicktheme.php\">\n<span class=\"tcat\" border: 0px solid; padding: 0px;\">\n";
		$data .= "<input type=\"hidden\" name=\"uid\" value=\"".$mybb->user['uid']."\" />";
		$data .= "<td span class=\"trow1\" align=\"center\"><strong><font size=\"1\">Change Theme</font size></strong> ".$theme_select."  <input type=\"submit\" class=\"tcat\" value=\"Change Theme\" /></td></span>\n</form>\n<br />\n";

You may have to play with the "classes" in this too, as you're adding it to a modded board. Smile

And you should be able to work from out this, how to change the "Clear" button too.. Toungue

Butttttttttt! Where it says <input type="whatever" change it to <input class="???" type="????? or use <span class............... </span etc.

Should break something... Lol! Toungue
Pages: 1 2