MyBB Community Forums

Full Version: dropdown menus colours
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Can anyone help me out, after many years using ASP forum I decided to look for a different forum so went for MyBB and I’m loving it.   

I was looking for a theme, but I decided to stick to the default theme but with my own colours, so I duplicated the theme and changed the colours. Its looking how I like it but I have one problem the dropdown menus at the bottom have coloured text that I don’t like but I just cant find it in the global.css I put this down to old age and my eyesight LOL, if someone could help  it would be very much
appreciated.

See attached files
In global.css around lines 520 of the default theme:

input.textbox {
	background: #ffffff;
	color: #333;
	border: 1px solid #ccc;
	padding: 3px;
	outline: 0;
	font-size: 13px;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
}

input.textbox.portal_search {
    width: 68%;
}

textarea {
	background: #ffffff;
	color: #333;
	border: 1px solid #ccc;
	padding: 2px;
	line-height: 1.4;
	outline: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

select {
	background: #ffffff;
	padding: 3px;
	border: 1px solid #ccc;
	outline: 0;
	font-family: Tahoma, Verdana, Arial, Sans-Serif;
	font-size: 13px;
}

Notice that background: #ffffff styles the various elements - input, select, textarea
God that was quick, all done thanks for your help. I’m positive I will be back LOL
Since it looks like you a making a dark skin for your forum, you me also need to make the WYSIWYG editor also dark: https://community.mybb.com/mods.php?acti...w&pid=1199