MyBB Community Forums

Full Version: missing/lost buttons
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
[Image: 92e9c0b66742445071f2af905350e16e.png]

as you can see here there is no "New Thread" button and also alot of others are missing aswell.

is there away to fix this?
I'm guessing you are using a custom theme, so make sure your Image Directory is set to the correct location.

Also, checkout the "forumdisplay_newthread" template, make sure it is not empty.
Yeah, when i look it says something a css and also the new reply is missing the edit reply to post ect...

about*
Do you have a link to your forum?
(2014-03-27, 12:07 AM)thexshadow Wrote: [ -> ]Do you have a link to your forum?

http://gengame.tk/

I managed to fix some buttons manually but not all
Ok, you are using CSS buttons, but you do not have a css entry for the buttons.

Add this your your global style sheet. You are going to have to edit the colours and how big they are (since they are from a custom theme I made), but they should work for you.

.cssbuttons {
	background: #3498db;
	background-image: -webkit-linear-gradient(top, #3498db, #2980b9);
	background-image: -moz-linear-gradient(top, #3498db, #2980b9);
	background-image: -ms-linear-gradient(top, #3498db, #2980b9);
	background-image: -o-linear-gradient(top, #3498db, #2980b9);
	background-image: linear-gradient(to bottom, #3498db, #2980b9);
	font-family: Arial;
	color: #ffffff !important;
	font-size: 11px;
	background: #1B511B;
	padding: 2px 6px 2px 6px;
	text-decoration: none;
}

.cssbuttons:hover {
	background: #0F7B00;
	text-decoration: none;
}
Thank you, although i turned them into Green squares?
Like I said you are going to have to configure the CSS to your liking.

Follow this tutorial here on how to convert all of your postbit buttons to CSS (which is good).

http://community.mybb.com/thread-113303.html
Thank you Smile

I just tryed that thing and it only added text
(2014-03-27, 12:33 AM)Billie Joe Armstrong Wrote: [ -> ]Thank you Smile

I just tryed that thing and it only added text

You have to make sure you add the css to your global style sheet.
Pages: 1 2