Hi all new guy on the block here,
I've got a website, and I want to add a welcoming message which hovers on a certain part of the page which only loads for the visitor for the first time they login, and won't again(presumably cookies used). And says something like "adjust your settings here.." I don't want it to be an external popup but something that loads on the page in a certain area, defined by me (PX-pixle reference)
I think i nutted something out in a bit of PHP, this is what i've got so far
PHP Code:
<?php
if (firstLogin()){
genSpecial(***load jquerie or css etc***);
}
else{
genRegular();
}
?>
can anyone help me figure out how to make this all work and load a box from jquerie or something similar? thanks
David