PM Notify & Guest Register bar
Forum rules
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
You dont have to use ModX or make your mod AutoMod compatible. A simple textfile is fine
But if you post Mods here You also have to give support
Re: PM Notify & Guest Register bar
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.
as you are suggesting to delete the above mentioned code -
my question is , if I donot delete this above mentioned code but implement the rest of the modification , will there be any problem in working of this modification ?
I mean , I want to keep both this PM pop-up and this PM Notify bar ....
Please answer ...
Last edited by BAT on 23 Apr 2010, 12:07, edited 1 time in total.
I am a Novice and I'm always confused .
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: PM Notify & Guest Register bar
No, you can keep that piece of code.
The only thing that will happen is that the standard popup system still will work - as you want.
The only thing that will happen is that the standard popup system still will work - as you want.
Board rules! No PM support
Re: PM Notify & Guest Register bar
Nice THANKS
Re: PM Notify & Guest Register bar
How I can set Register bar & Pop like here same Colours?
Re: PM Notify & Guest Register bar
please read the whole topic, this has been asked a few times already!
Re: PM Notify & Guest Register bar
when i done instuction for prosilver theme i have result like there
- Stoker
- Site Admin
- Posts: 3536
- Joined: 12 May 2008, 23:26
- BBCodes: 239
- Favourite BBCode: Anipro
- Favourite MOD: PrettyPhoto
- Location: Denmark
- Contact:
Re: PM Notify & Guest Register bar
Ye, that is what is available.
You have to do any tweaking yourself.
You have to do any tweaking yourself.
Board rules! No PM support
Re: PM Notify & Guest Register bar
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;
}
I do not understand how to make a transparent code