Can't find in stylesheet where I can change a certain color
Hi,
I'm trying to find where in the stylesheet I can change the color of the message box that tells me messages like "Your feature request is sent successfully" or "You can not add your own videos to your favorites" at the view_video.tpl page.
Also, the other boxes I'm having trouble finding out how to change are the ones that tell you you're a guest user, you need to login / sign-up, you've used your allotted amount of bandwidth for the month, etc. The default yellowish background with a blue border (or sometimes red) boxes are on my site now and it looks out of place when they come up :\
Help leading me to the right spot to change the colors would be awesome :)
Re: Can't find in stylesheet where I can change a certain color
You need to edit the following style in video.css( templates/css) for modifying "You can not add your own videos to your favorites"
#video_tools_result {
margin-top: 0.5em;
border: #ff9900 1px solid;
background-color: #ffffcc;
padding:1em;
}
To modify yellowish background red border, edit the following style in video.css( templates/css)
.error
background-color:#FFFFCC;
background-image:url(../images/msg_error.gif);
background-position:10px 5px;
background-repeat:no-repeat;
border:1px solid #FF0000;
color:#FF0000;
font-weight:700;
margin:auto auto 0.2em;
padding:1em;
text-align:center;
vertical-align:middle;
}