Diseño Web /

[Ayuda][CSS] Links Subrayados OnMouseOver

Participa en el tema [Ayuda][CSS] Links Subrayados OnMouseOver en el foro Diseño Web.
Ke tal gente, bue, como se pueden imaginar el gil soy yo. La pregunta es ...

Buscar en este tema:
 
  •  
    #1 Ayudan a un gil???
    Ke tal gente, bue, como se pueden imaginar el gil soy yo. La pregunta es tan estupida pero no la vi en ninguna parte, y no soy tan capo como la mayoria de ustedes en el tema de diseño web. Soy de los tipicos ke diseñan una paginita pedorra.

    Bueno, pa no perder el tiempo, ya ke la pregunta es una perdida de tiempo, es la siguiente. ¿Los links, (no precisamente de esta pagina), ya no vienen subrayados, y cuando le das el mouseover, se subraya, como cuerno hago esa boludes?!!!, muchos se deben estar cagando de risa del pobre imbecil pero bue, les juro ke me baje mil paginas donde veo ese link, voy con el DREAMWEAVER, a ver directamente el codigo (TAG), pero no me aparece nada de eso, me aparece el codigo pa ke cambie de color y eso, pero no para lo ke kiero. Si alguien sabe, por favor ke me diga, porke es una duda existencial la ke tengo, hace como dos años ke no hago paginas, y ahora me puse con un foro de un amigo, y kiero meterle esa huevada pero no puedo sacar el codigo. Puede ser ke sea un CSS??

    :confused:
    (como se podran imaginar, tampoco se ke es un CSS, tiro fruta).
    Bueno, y suponiendo ke es tan estupido lo ke pido, supongo ke el dreamweaver debe tener estas taradeses ya metidas para ke yo simplemente con dos clics haga eso.

    En sintesis, porke hasta yo me estoy mareando, si alguien sabe como hacer un link ke no este subrayado y cuando posiciono el mouse arriba se subraya magicamente, ke me pase la formula please

    Gracias che
    +
     
    0
    Me gusta
     
    | Más
  • #2

    busca mejor owentar en el foro porque esa pregunta ya la hicieron
    y sino en el buscador pone *CSS* y vas a encontrar algunas cosas que te pueden servir
    Me gusta este mensaje
  • #4

    Una opcion es con CSS, como bien decis... sino, CSS+JavaScript...

    Te dejo el script tal cual lo saqué...
    Código:
    ============================================================
    Script:     Multiple-Color Interactive Light-Up Links Script
    
    Functions:  One of the most-asked questions in our support
                mail, this very simple technique shows how to
                add differently colored links to the same page
                that light up and underline on mouseOver.
                
    Browsers:   IE4-6, NS6
                (NS4 - partial, sets fixed color only)
                (Degrades gracefully in other browsers)
    
    Author:     etLux
    ============================================================
    
    Step 1.
    Installation
    
    Put the following style script in the head of your page.  See
    notes on modifications and use below.
    
    <style>
    <!--
    
    A.type1:link    {color:#FFDD00; text-decoration:none;}
    A.type1:visited {color:#FFDD00; text-decoration:none;}
    A.type1:active  {color:#FFDD00; text-decoration:none;}
    A.type1:hover   {color:#00FF80; text-decoration:underline;}
    
    A.type2:link    {color:#FF0000; text-decoration:underline;}
    A.type2:visited {color:#FF0000; text-decoration:underline;}
    A.type2:active  {color:#FF0000; text-decoration:underline;}
    A.type2:hover   {color:#ABCDEF; text-decoration:underline;}
    
    A.type3:link    {color:#00CCFF; text-decoration:none;}
    A.type3:visited {color:#00CCFF; text-decoration:none;}
    A.type3:active  {color:#00CCFF; text-decoration:none;}
    A.type3:hover   {color:#FF8000; text-decoration:overline underline;}
    
    //-->
    </style>
    
    ============================================================
    
    Step 2.
    Attaching the individual styles to individual text links
    
    This couldn't be simpler...
    
    For a text link, just include a class="styleName" in the
    <a href> tag, like this...
    
    <a class="type1" href="http://whatever.com">click</a>
    <a class="type2" href="http://whatever.com">click</a>
    <a class="type3" href="http://whatever.com">click</a>
    
    where type1, type2, and type3 are the style names in the
    <style> script above.
    
    ============================================================
    
    Notes on Modifications and Use
    
    We've named the individual styles type1, type2 and type3
    arbitrarily.  You can use any name (no spaces, mixed upper-
    and lowercase are acceptable).
    
    There is no real limit on the number of individual link
    styles you can use on a page.  To add more, just follow the
    general pattern.
    
    To change the colors, just do the obvious -- the colors are
    set in #RRGGBB exactly the same as in HTML.
    
    The text-decoration sets how the underline will (or will
    not) appear with a link.
    
    text-decoration: none;  will not show a link underline
    text-decoration: underline;  will show a link underline
    
    One additional cool trick with this is to use:
    
    text-decoration: overline underline; 
    
    which will show a line both over and under a link.
    
    
    CAUTION!
    
    One common error in use in applying these is to have tags
    intervening between the <a href> and the text that is
    linked. For example, this IS right...
    
    <font size="2">
    <a class="type3" href="http://whatever.com">
    click
    </a>
    </font>
    
    This is NOT right and may fail...
    
    <a class="type3" href="http://whatever.com">
    <font size="2">
    click
    </font>
    </a>
    
    Make sure the <a href>...</a> tags directly surround the
    text to which you are applying the style!
    
    ============================================================
    

    EDIT: juas... posteamos juntos
    Bueno... dejo el script anyway...
    Me gusta este mensaje
  • #5

    bueno... pobre... no se si lo habra solucionado con eso... la respuesta esta ahi... pero para hacersela mas corta al pibe:

    Propiedades de la pagina (ctrl + j en DW si mal no recuerdo) ahi fijate... tenes para customizar los links... si los queres con subrayado, o sin, con negrita o sin... alguna fuente en especial... y lo mismo para los links...

    eso lo que va a hacer es generarte el codigo que te pastearon mas arriba, pero bueno... la idea de los WYSIWYG es no tener q codear? no?
    (iogualmente yo soy mas programador que diseñador y me gusta codear )
    Me gusta este mensaje
  • #6

    Es cuestión de aprender un poquito nomás de CSS... y siempre va a ser mucho más sencillo todo
    Aunque parece piola el script que puso acá Dark....

    A mano:
    Dentro del <head> de tu documento HTML pones:

    Código:
    a:link, a:active {
       color : #369;
       text-decoration: none;
    }
    
    a:visited {
        color: #669;
        text-decoration: none;
    }
    
    a:hover {
       color: #4682B4;
       text-decoration: underline;
    }
    
    O sino, tenés esta mini extensión, que por cierto es vieja, para usar dentro de Dreamweaver... creo que es esa....(sino, avisame que busco la tenía en la otra pc)
    Eso si, siempre revisar bien el código fuente....!
    Archivos adjuntos
    Tipo de archivo: rar textlinkrollover.rar (4.2 KB, 1 vistas)
    Me gusta este mensaje


Estadísticas del tema
  • 5 RESPUESTAS
  • 3119 VISTAS
  • 5 USUARIOS RESPONDIERON
 
Ir arriba
Contacto | Acerca de | Ayuda | Términos Legales | privacidad | Pautas de convivencia | Mapa de los foros | TrabajÁ con nosotros
©2008 Psicofxp.com S.A. - Todos los derechos reservados
Certifica IAB