• Resuelto flowerjam

    (@flowerjam)


    Hola! Estoy administrando la página yogadelalma.com y toqué el archivo style.css. Cambié el tamaño de la fuente del menú principal, pero quedó demasiado grande.
    El problema es: aunque volví a poner el tamaño original de la fuente en el código HTML, los cambios no se aplican! Me quedó el font size grande, y no hay forma de volverlo atrás. Toqué todos los font-size del archivo style, y no ocurre nada! Qué puedo hacer?
    Muchas gracias!

Viendo 5 respuestas - de la 1 a la 5 (de un total de 5)
  • Iniciador del debate flowerjam

    (@flowerjam)

    A todo esto… yo lo que estaba buscando era cambiar el tamaño del widget del menú lateral.
    Pero tampoco pude hacerlo.
    Paso imagen acá:
    [IMG]http://i67.tinypic.com/acs6sl.png[/IMG]
    Muchisimas gracias de antemano!!

    Moderador almendron

    (@almendron)

    Línea 210 del tu hoja de estilos: body, input, textarea. Ahí puede modificar a tu gusto tanto el tamaño de la fuente como la distancia entre líneas.

    Iniciador del debate flowerjam

    (@flowerjam)

    Hola almendron! Muchas gracias!
    Disculpá la ignorancia, pero cual de todas estas lineas es para modificar el texto del menú principal? y el de la barra lateral?
    (no soy una experta en html)
    (gracias de nuevo!!!)

    /* Main global ‘theme’ and typographic styles */
    body {
    background: #f1f1f1;
    }
    body,
    input,
    textarea {
    color: #666;
    font-size: 12px;
    line-height: 18px;
    }
    hr {
    background-color: #e7e7e7;
    border: 0;
    clear: both;
    height: 1px;
    margin-bottom: 18px;
    }

    /* Text elements */
    p {
    margin-bottom: 18px;
    }
    ul {
    list-style: square;
    margin: 0 0 18px 1.5em;
    }
    ol {
    list-style: decimal;
    margin: 0 0 18px 1.5em;
    }
    ol ol {
    list-style: upper-alpha;
    }
    ol ol ol {
    list-style: lower-roman;
    }
    ol ol ol ol {
    list-style: lower-alpha;
    }
    ul ul,
    ol ol,
    ul ol,
    ol ul {
    margin-bottom: 0;
    }
    dl {
    margin: 0 0 24px 0;
    }
    dt {
    font-weight: bold;
    }
    dd {
    margin-bottom: 18px;
    }
    strong {
    font-weight: bold;
    }
    cite,
    em,
    i {
    font-style: italic;
    }
    big {
    font-size: 131.25%;
    }
    ins {
    background: #ffc;
    text-decoration: none;
    }
    blockquote {
    font-style: italic;
    padding: 0 3em;
    }
    blockquote cite,
    blockquote em,
    blockquote i {
    font-style: normal;
    }
    pre {
    background: #f7f7f7;
    color: #222;
    line-height: 18px;
    margin-bottom: 18px;
    overflow: auto;
    padding: 1.5em;
    }
    abbr,
    acronym {
    border-bottom: 1px dotted #666;
    cursor: help;
    }
    sup,
    sub {
    height: 0;
    line-height: 1;
    position: relative;
    vertical-align: baseline;
    }
    sup {
    bottom: 1ex;
    }
    sub {
    top: .5ex;
    }
    small {
    font-size: smaller;
    }
    input[type=»text»],
    input[type=»password»],
    input[type=»email»],
    input[type=»url»],
    input[type=»number»],
    textarea {
    background: #f9f9f9;
    border: 1px solid #ccc;
    box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    -moz-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    -webkit-box-shadow: inset 1px 1px 1px rgba(0,0,0,0.1);
    padding: 2px;
    }
    a:link {
    color: #0066cc;
    }
    a:visited {
    color: #743399;
    }
    a:active,
    a:hover {
    color: #ff4b33;
    }

    /* Text meant only for screen readers */
    .screen-reader-text {
    clip: rect(1px, 1px, 1px, 1px);
    overflow: hidden;
    position: absolute !important;
    height: 1px;
    width: 1px;

    Moderador almendron

    (@almendron)

    En toso los casos, la línea a modificar es font-size
    Fuente del cuerpo:

    #content, #content input, #content textarea {
        color: #333;
        font-size: 16px;
        line-height: 24px;

    Del menú principal:

    #access .menu-header, div.menu {
        font-size: 15px;
        margin-left: 12px;
        width: 928px;
    }

    Texto lateral:

    body,
    input,
    textarea {
    	color: #666;
    	font-size: 12px;
    	line-height: 18px;
    }
    • Esta respuesta fue modificada hace 7 años, 8 meses por almendron.
    Iniciador del debate flowerjam

    (@flowerjam)

    Muchas muchas gracias!!

Viendo 5 respuestas - de la 1 a la 5 (de un total de 5)
  • El debate ‘Tamaño Fuente – problema’ está cerrado a nuevas respuestas.