Okay
  Public Ticket #2535643
How to set font size of portfolio item (detail view)
Closed

Comments

  • Juerg Baiker started the conversation

    How can the title of the portfolio title (detail view) be set to a smaller size, so that the title line stays on one line?

  •  2,965
    Andrew replied

    Hi Juerg,

    Use the following custom css in Salient > General settings > CSS/Script related:

    #page-header-bg .span_6 h1, .nectar-box-roll .overlaid-content h1 {
        font-size: 40px;
    }
    

    Hope this helps.

  • Juerg Baiker replied

    Thanks, this also altered the font size of the intro text animation (see picture).

    Is there a way to seperately adress these two h1 elements?

  •  2,965
    Andrew replied

    Hi Juerg,

    Try the following:

    #page-header-bg .project-title .span_6 h1 {
        font-size: 30px;
    }
    

    Thanks.

  • Juerg Baiker replied

    Thank you very much for your help. Works now as it should.