MyBB Community Forums

Full Version: I downloaded plugins I would like to add, What next?
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Hello,
   I have downloaded a few plugins I would like to add to mybb. I have no idea where to load them to from there.
1. I assume I use my ftp program?
2.After that is there any folder I need to put the plug ins in or specific files only I need to upload?
3. How do I get rid of the Mybb logo on the top left of all my pages and make it my own logo?

Sorry I am new to this. But thank you to all that reply
Yes you use an FTP client like Filezilla. You install plugins by uploading the files maintaining the directory structure. What this means is the files in the plugins folder go into plugins folder on the server and so on. After you have done that go to Admin Control Panel (ACP) -> Configuration -> Plugins and you will be able to activate it from there.

To change the logo. Go to ACP -> Templates & Style -> Themes. Then select edit theme from the options box next to theme you're using. Scroll down and you will an option to edit the logo path.
I really appreciate that. Thank you. Both worked great.
One more question if you do not mind
where to change the color on the blue forum and black category tabs that run across the screen?
(2019-07-03, 08:31 PM)purehobby Wrote: [ -> ]I really appreciate that. Thank you. Both worked great.
One more question if you do not mind
where to change the color on the blue forum and black category tabs that run across the screen?

global.css approx lines 365:


.thead {
	background: #0066a2 url(images/thead.png) top left repeat-x;
	color: #ffffff;
	border-bottom: 1px solid #263c30;
	padding: 8px;
}

.thead a:link {
	color: #ffffff;
	text-decoration: none;
}

.thead a:visited {
	color: #ffffff;
	text-decoration: none;
}

.thead a:hover,
.thead a:active {
	color: #ffffff;
	text-decoration: underline;
}

.tcat {
	background: #0f0f0f url(images/tcat.png) repeat-x;
	color: #fff;
	border-top: 1px solid #444;
	border-bottom: 1px solid #000;
	padding: 6px;
	font-size: 12px;
}

.tcat a:link {
	color: #fff;
}

.tcat a:visited {
	color: #fff;
}

.tcat a:hover,
.tcat a:active {
	color: #fff;
}

blue is .thead
black is .tcat
Thank you

I changed the blue color and hit save but it didn't do it. Am I missing something?
I notice it says
background: #0066a2 url(images/thead.png) top left repeat-x;
which is where I changed the color and hit save but nothing
replace

background: #0066a2 url(images/thead.png) top left repeat-x;

with:

background-color: #007bff;

replace:

background: #0f0f0f url(images/tcat.png) repeat-x;
 
with:

background-color: #343a40;