← Javascript

alguém sabe com eu posso fazer isso com meu site?

Lida 2525 vezes

Offline

Grnetwork 
Membro
Mensagens 85 Gostos 0
Troféus totais: 20
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 4 Level 3 Level 2 Level 1 50 Posts 10 Posts First Post

Ola pessoal eu esta navegando na internet quando me deparei com esse forum: http://www.forumdinheiro.com/

Como voces podem ver logo quando voce entra tem uma mensagem em amarelo, escrito "Ainda não se registrou? Para poder..."

COmo eu posso fazer isso? alguém tem alguma dica de script que faça isso.

Obrigado des de já.
Offline

cenourinha 
Elite
Mensagens 4094 Gostos 21
Troféus totais: 34
Trófeus: (Ver todos)
Mobile User Apple User Level 6 Super Combination Combination Topic Starter 10 Poll Votes Poll Voter Level 5 Level 4

Colocas isto no teu ficheiro de css:

Código: [Seleccione]
  #info
  {
    overflow: visible;
    width: 100%;
    z-index:2;
    font-family: Verdana, Arial, Helvetica, sans-serif;
    font-size: 8pt;
    font-weight: normal;
  }

  #infobar a, #infobar a:link, #infobar a:visited, #infobar a:active
  {
    display: block;
    float: center;
    width:100%;
    clear: both;
    color: InfoText;
    background: InfoBackground url(icon_warning.gif) no-repeat fixed .3em .3em;
    padding: .45em .3em .45em 2em;
    border-bottom: .16em outset;
    text-decoration: none;
    cursor: default;
  }

  #infobar a:hover
  {
    color: HighlightText;
    background: Highlight url(icon_warning_hover.gif) no-repeat fixed .3em .3em;
  }

  #viewplot
  {
    width: 100%;
    height: expression(this.parentNode.offsetHeight - this.offsetTop);
    overflow-x: hidden;
    overflow-y: scroll;
    padding: 1em;
  }

E depois, dependendo do CMS que estiveres a usar ou da forma como verificas se o utilizador está logado ou não, apresentas esta mensagem a seguir ao <body>:

Código: [Seleccione]
<div id="info"><div id="infobar"align="center"><a href="Link para a pagina de registo">Ainda não se registou? Para poder participar nesta comunidade clique aqui e faça o seu registo, Obrigado! </a></div></div><br>
Offline

Grnetwork 
Membro
Mensagens 85 Gostos 0
Troféus totais: 20
Trófeus: (Ver todos)
Super Combination Combination Topic Starter Level 4 Level 3 Level 2 Level 1 50 Posts 10 Posts First Post

Vlw, vou testar aqui. obrigado.