style of notifications in vorple

Hello,

I’m wondering if there’s a way to change the style of notifications in Vorple? I’d like to change the colors of the pop-up box and its text if I can.

Thanks!

You need to add some custom CSS:

.toast-message {
    color: #ff0000;
}

#toast-container > .toast-info {
    background-image: none;
    background-color: #00ff00;
}

Replace .toast-info with the type of notification you want (.toast-info, .toast-success, .toast-warning or .toast-danger).

Thanks! One other question (and thanks for helping with this – I’m sort of trying to learn css as I do this), how would I refer to the name of the notification title, so I can change that color too? I’d all like the text to be black and the background white; I wouldn’t mind changing the color of the little info balloon too, which is white as well.

EDIT: I figured out

.toast-title { color: black; }

which leaves me with just the info balloon graphic!

Thanks again! I really like the way Vorple looks. At some point I’ll have a project to share that wouldn’t look nearly as nice without it.