Re: PM Notify & Guest Register bar
Posted: 22 Apr 2010, 09:32
yes
Database and Demo for phpBB3 BBCodes, Mods and Smilies
https://phpbb3bbcodes.com/
I have a question !Stoker ยป 10 Mar 2010, 20:27 wrote:PM Notify & Guest Register bar
Standard Edition
Prosilver
Open styles/prosilver/template/overall_header.html
Find and delete:This is the code that does the standard popup window when there is a new private message.Code: Select all
<!-- IF S_USER_PM_POPUP --> if ({S_NEW_PM}) { var url = '{UA_POPUP_PM}'; window.open(url.replace(/&/g, '&'), '_phpbbprivmsg', 'height=225,resizable=yes,scrollbars=yes, width=400'); } <!-- ENDIF -->
We are replacing it so we dont need it anymore.
Code: Select all
#infobar a, #infobar a:link, #infobar a:visited, #infobar a:active
{
display: block;
background-image: url(images/transhover.png);
opacity: 0.3;
filter:alpha(opacity=30);
float: left;
width:100%;
clear: both;
color: #d50000;
padding: .55em 0 .55em 0;
border-bottom: .25em solid #7F8D03;
text-align: center;
text-decoration: none;
background-color :#E5E5E5;
}
#infobar a:hover
{
background-image: url(images/transhover.png);
color: black;
background:#F4F4F4;
opacity: 1;
filter:alpha(opacity=100);
border-bottom: .25em solid #7F8D03;
cursor: pointer;
}