Foros del Web » Creando para Internet » CSS »

ayuda porfa

Estas en el tema de ayuda porfa en el foro de CSS en Foros del Web. Hola. Tengo definido este estilo css para los vinculos y quiciera agregale un estado más para cuando posicionen el mouse el vinculo cambie de color: ...
  #1 (permalink)  
Antiguo 20/09/2007, 20:54
 
Fecha de Ingreso: julio-2007
Mensajes: 287
Antigüedad: 16 años, 7 meses
Puntos: 4
Pregunta ayuda porfa

Hola.
Tengo definido este estilo css para los vinculos y quiciera agregale un estado más para cuando posicionen el mouse el vinculo cambie de color:

a.vinc-menu {
font:14px Arial, Helvetica, sans-serif;
font-size: 13px;
color: #999999;
text-decoration: underline;

}
que me falta agregar para eso?
Muchas grcias!
  #2 (permalink)  
Antiguo 20/09/2007, 21:00
Avatar de Carxl
Colaborador
 
Fecha de Ingreso: agosto-2006
Ubicación: Bogotá
Mensajes: 2.993
Antigüedad: 17 años, 7 meses
Puntos: 70
De acuerdo Re: ayuda porfa

Hola yole...

A manera de consejo revisa las FAQ's primero, muchas veces encuentras lo que buscas ahí... he aquí tu respuesta!!

Saludos
__________________
Hay 10 tipos de personas, los que entienden binario y los que no. (Anónimo)
www.programandoweb.com
  #3 (permalink)  
Antiguo 23/09/2007, 19:34
Avatar de nicoquagliata  
Fecha de Ingreso: septiembre-2007
Mensajes: 14
Antigüedad: 16 años, 5 meses
Puntos: 1
Re: ayuda porfa

Cita:
Iniciado por yole Ver Mensaje
Hola.
Tengo definido este estilo css para los vinculos y quiciera agregale un estado más para cuando posicionen el mouse el vinculo cambie de color:

a.vinc-menu {
font:14px Arial, Helvetica, sans-serif;
font-size: 13px;
color: #999999;
text-decoration: underline;

}
que me falta agregar para eso?
Muchas grcias!
puedes agregarle un estado de la siguiente manera:
a.vinc-menu:hover {
color: #00aadd;
}

espero te sirva, saludos
  #4 (permalink)  
Antiguo 24/09/2007, 04:30
Avatar de Undying  
Fecha de Ingreso: julio-2006
Ubicación: Argentina
Mensajes: 389
Antigüedad: 17 años, 8 meses
Puntos: 6
Re: ayuda porfa

Yole, es verdad lo que dice Carlx, es cuestion de buscar antes y por favor, sé un poco mas descriptivo en cuanto al título en tu consulta, recordá que la mayoria necesita ayuda asi que el titulo de "Ayuda porfa" es molesto porque hace ingresar a alguien a tener que leer el detalle de tu problema y cuando lo termina de leer se da cuenta que por ahi no puede ayudarte, se daria cuenta antes si tu titulo describe por ejemplo "Agregar estado para que cambie el color del vínculo"


Te doy un ejemplo compia y pega el siguiente codio en un block de notas y guardalo con la extencion .css luego vinculalo a tu documento si es eso lo que estas buscamdo cambuale los valoere por los tuyos y listo.


body {
margin-bottom: 0px;
font-family: Verdana;
font-size: 10px;
font-style: normal;
line-height: normal;
font-weight: normal;
font-variant: normal;
text-transform: none;
color: #525252;
}
td, textarea, input, select {
font-family: Tahoma;
font-size: 10px;
color: 3E4B4F;
font-weight: normal;
}
.tableDetail {
font-size: 10px;
font-family: Verdana;
color: #49394E;
}
a:link {
color: 1D2F51;
font-family: tahoma;
font-size: 10px;
font-weight: bold;
text-decoration: underline;

}
a:hover {
color: #4F93A7;
font-family: tahoma;
font-size: 10px;
font-weight: bold;
font-style: normal;
line-height: normal;
font-variant: normal;
text-transform: none;
border: thin none #FFFFFF;
text-decoration: underline;
}
a:visited {
color: 1D2F51;
font-family: tahoma;
font-size: 10px;
font-weight: bold;
font-style: normal;

}

.text1 {
font-family: tahoma;
font-size: 10px;
color: 3B3B3B;
font-weight: bold;
}
.text2 {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #FFFFFF;
}
.text3 {
font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #FFFFFF;
}
.text4 {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 1D2F51;
}
.text5 {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 6290A8;
}
.text6 {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 949494;
}
.text7 {
font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #000000;
}
.text8 {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 94AEC5;
}
.text9 {


font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 4E4E4E;
}
.frame {
border: 1px solid #E5FBFF;
}
.designed_by {
font-family: Arial;
font-size: 8.5px;
font-weight: lighter;
color: #000000;
}
a.a:link {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #FFFFFF;
}
a.a:hover {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #92C8DB;
}
a.a:visited {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #FFFFFF;
}
a.b:link {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: DB6B00;
text-decoration: underline;
}
a.b:hover {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #4C91A5;
text-decoration: underline;
}
a.b:visited {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: DB6B00;
text-decoration: underline;
}
a.c:link {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: C4D356;
text-decoration: underline;
}
a.c:hover {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #666666;
text-decoration: underline;
}
a.c:visited {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: C4D356;
text-decoration: underline;
}
a.d:link {



font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #33485d;
text-decoration: underline;
}
a.d:hover {


font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #E4141A;
text-decoration: underline;
}
a.d:visited {


font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #000000;
text-decoration: underline;
}
a.e:link {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: 944F23;
text-decoration: underline;
}
a.e:hover {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #4E4E4E;
text-decoration: underline;
}
a.e:visited {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: 944F23;
text-decoration: underline;
}
a.f:link {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 594B13;
text-decoration: underline;
}
a.f:hover {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #4E4E4E;
text-decoration: underline;
}
a.f:visited {

font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: 594B13;
text-decoration: underline;
}
a.g:link {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #000000;
text-decoration: underline;
}
a.g:hover {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #FF6600;
text-decoration: underline;
}
a.g:visited {

font-family: tahoma;
font-size: 10px;
font-weight: bold;
color: #000000;
text-decoration: underline;
}
.inputstyle {
font-family: tahoma;
font-size: 10px;
font-weight: normal;
color: #5F726F;
background-color: #E2EDEB;
border: 1px solid #333333;
}




Espero que sea esto lo que andes buscando =)



Saludos!
Atención: Estás leyendo un tema que no tiene actividad desde hace más de 6 MESES, te recomendamos abrir un Nuevo tema en lugar de responder al actual.
Respuesta




La zona horaria es GMT -6. Ahora son las 23:19.