How does the Welcome screen

GK User
Wed Jan 28, 2015 11:38 pm
Hello. Help please.
How does the Welcome screen.
How to insert a greeting page Fasebook
Thank
https://docs.google.com/document/d/1DPVAvC8Pls4lRt55EVv0cVid65RjsyWDLjHbyH3lJ24/pub
User avatar
Junior Boarder

teitbite
Thu Jan 29, 2015 2:42 pm
Hi

Welcome screen is only visible in demo. This element is not present in the template packages.
User avatar
Moderator

GK User
Thu Jan 29, 2015 6:54 pm
teitbite wrote:Hi

Welcome screen is only visible in demo. This element is not present in the template packages.

Thanks for the reply.
Tell me how to do something like that?
User avatar
Junior Boarder

teitbite
Fri Jan 30, 2015 7:53 pm
Hi

Add this code to /layout/default.php right before </body> tag.

Code: Select all
<div id="tip-overlay"></div>


than add this to css:

Code: Select all
#tip-overlay {
    background: url("https://demo.gavick.com/joomla25/writer/templates/gk_writer/images/overlay-img.png") no-repeat scroll 100px center rgba(0, 0, 0, 0.75);
    cursor: pointer;
    height: 100%;
    left: 0;
    opacity: 1;
    position: fixed;
    top: 0;
    transition: all 0.3s ease-out 0s;
    width: 100%;
    z-index: 4;
}
User avatar
Moderator

GK User
Fri Jan 30, 2015 9:16 pm
:) thank you
User avatar
Junior Boarder

teitbite
Sun Feb 01, 2015 10:55 pm
Hi

No problem. Glad I could help.
User avatar
Moderator

GK User
Thu Feb 05, 2015 9:22 am
Hi.
Welcome screen does not hide when clicking.
Where to add the css code? /css/override.css?
User avatar
Fresh Boarder

teitbite
Fri Feb 06, 2015 3:35 pm
Hi

@maxdave You following customisations I'm explaining here ? This needs much more code than I presented. Whole javascript which will hide/load it. But since it's a customisation than I'm only allowed to spend a little time on that. Here is how the beginning of script codding can looks like:

Code: Select all
<script type="text/javascript">(function($) {$(document).ready(function() {
$('#tip-overlay').click(function(){
$(this).hide('slow');
});
});})(jQuery)</script>
User avatar
Moderator


cron