All I want to do is use one of the promo pictures that dolphin 7 has in it's promo flash. Tried deleted to delete all of the ones that I didn't want but remaining one flashes. I would also like to keep "welcome to the community" and the join login buttons. Is there any easy html code i could use for the custom html block? This can't be that hard, but I don't know how to write code. Thanks in advance |
To change your flasj promo: settings - basic settings
and for the welcome message ... in your langs |
I would like the promo flash box to look like this...this only picture...

|
Also a very cool new feature in Dolphin 7...the welcome message could not be changed that easily in older versions...Thanks for the heads up.
|
Go in admin->settings->basic settings. Look in promo, see which is the image you like, and delete the other ones. |
Yes.
Put this in the html promo block to show one static image. Make sure you click the tinymce html button to enter this as html.
<div id="indexPhotoBorder"> <div id="indexPhotoLabel"> <div class="sys_title">Welcome to the community!</div> <div class="sys_promo"> <div class="subMenuOvr"> <div class="sys_tm_actions"> <div class="input_wrapper input_wrapper_input_set"> <div style="margin-right: 14px;" class="button_wrapper"> <input type="button" onclick="window.open (\'join.php\',\'_self\');" name="join" value="Join" class="form_input_submit bigJoinButton submit"> <div class="button_wrapper_close"> </div> </div> <div class="button_wrapper"> <input type="button" onclick="showPopupLoginForm(); return false;" name="login" value="Login" class="form_input_submit bigLoginButton submit"> <div class="button_wrapper_close"> </div> </div> </div> </div> </div> </div> </div> <div onclick="location=\'join.php\'" id="indexPhoto" style="overflow: hidden; position: relative;"> <img src="media/images/promo/promo_p04.jpg" style="position: absolute; left: 0px; top: 0px; display: block;"></div> </div>
Replace promo_p04.jpg with the name of the image you want to use.
https://www.deanbassett.com |
Ah beat me to it Deano  |
Thanks deano92964, worked like a charm i was also able to edit the welcome message as well. |
Would be nice to disable Promo after Login. Is there a way? |
https://www.deanbassett.com |
|
Yes.
Put this in the html promo block to show one static image. Make sure you click the tinymce html button to enter this as html.
<div id="indexPhotoBorder"> <div id="indexPhotoLabel"> <div class="sys_title">Welcome to the community!</div> <div class="sys_promo"> <div class="subMenuOvr"> <div class="sys_tm_actions"> <div class="input_wrapper input_wrapper_input_set"> <div style="margin-right: 14px;" class="button_wrapper"> <input type="button" onclick="window.open (\'join.php\',\'_self\');" name="join" value="Join" class="form_input_submit bigJoinButton submit"> <div class="button_wrapper_close"> </div> </div> <div class="button_wrapper"> <input type="button" onclick="showPopupLoginForm(); return false;" name="login" value="Login" class="form_input_submit bigLoginButton submit"> <div class="button_wrapper_close"> </div> </div> </div> </div> </div> </div> </div> <div onclick="location=\'join.php\'" id="indexPhoto" style="overflow: hidden; position: relative;"> <img src="media/images/promo/promo_p04.jpg" style="position: absolute; left: 0px; top: 0px; display: block;"></div> </div>
Replace promo_p04.jpg with the name of the image you want to use.
Do you if you can use this same code on earlier versions of dolphin v6.
Thanks again for your help.
|
No. This is for D7. The D7 promo area has the semi transparent overlay on the bottom which is part of this code. D6 Does not have that, so no, the code is not compatible.
https://www.deanbassett.com |