MyBB Community Forums

Full Version: Barely visible "message received" box
You're currently viewing a stripped down version of our content. View the full version with proper formatting.
Pages: 1 2
http://imgur.com/a/GuoqT

How do I make this "box" more visible, since you'll have to mark it all to see it..

Can anyone help me ? Smile
global_pm_alert template under global templates.
How do I change th text to green? Confused

Like, all of it..
color: #008000;

In the template, where I believe the CSS (styling information) is hidden, you will need to change the hexadecimal color code.

It will look something like what you see above, but will be a different 6-digit code representing a color.

If you change it to #008000 (that is green)

All The Greens!  Big Grin
In global.css

find

.pm_alert {
	background: #FFF6BF;
	border: 1px solid #FFD324;
	text-align: center;
	padding: 5px 20px;
	margin-bottom: 15px;
	font-size: 11px;
}

add to it:

color:green;
http://imgur.com/a/2ozJw

It actually helped,
but how do I make the rest of it the same way, just green at the name, and as well as the title..

Some of it is still barely visible..

The text is shown as this:
You have one unread private message from James titled ASD

Where I want THIS to be black; You have one unread private message from James titled ASD
^^ black ^ Name should be green, and the text "Titled black, and the title GREEN
(2017-07-08, 01:46 PM)Aerius Wrote: [ -> ]http://imgur.com/a/2ozJw

It actually helped,
but how do I make the rest of it the same way, just green at the name, and as well as the title..

Some of it is still barely visible..

The text is shown as this:
You have one unread private message from James titled ASD

Where I want THIS to be black; You have one unread private message from James titled ASD
                                                              ^^  black                                                  ^  Name should be green, and the text "Titled black, and the title GREEN

The name and the title are links. So below the pm alert css in global.css add

.pm_alert a:link,
.pm_alert a:visited,
.pm_alert a:hover,
.pm_alert a:active {
	color: green;
}

and style it to suit.
It didn't help with that..

If you use teamviewer, it would be easier if you showed me Toungue
I tested before i posted, you need to press CTRL+F5 to hard refresh after making changes to stylesheet.
Didn't help... : /
Pages: 1 2