Forums

The forums ran from 2008-2020 and are now closed and viewable here as an archive.

Home Forums Design How can I overwrite the element.style on my startpage

  • This topic is empty.
Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #248967
    mattkay
    Participant

    Hello everybody,

    I cannot overwrite the element.style on my startpage to change the font size.
    It´s about this text on the startpage of this homepage: http://luisreynosomusic.com/

    Producción musical para todo tipo de artistas, empresas, productos y programas.. En el D.F desarrollo la mayor parte de mi trabajo profesional para cantantes y empresas como Televisa y Emi Televisa, y en Colima mis clientes son cantantes y empresas de todo tipo, desde un colegio que necesita un himno hasta una cadena de tintorerías .
    (It´s the text in the black box, I suppose the size is automatically created with java script?)

    As you can see I tried to override it like that:

    article#item_130 {
    color: #90949c;
    font-family: ‘Ubuntu’, sans-serif !important;
    font-size: 16px !important;
    letter-spacing: 0px !important;
    }

    But ist still shows the other font family and other font size.

    Anybody can help me?
    Thank you!

    #248968
    Shikkediel
    Participant

    I think you should target the span specifically (or it won’t override the inline style)…

    article#item_130 span {
      color: #90949c;
      font-family: ‘Ubuntu’, sans-serif !important;
      font-size: 16px !important;
      letter-spacing: 0px !important;
    }
    
    #248969
    mattkay
    Participant

    Thank you very much Shikkediel :)

Viewing 3 posts - 1 through 3 (of 3 total)
  • The forum ‘Design’ is closed to new topics and replies.