Okay
  Public Ticket #1471951
Custom full background block
Closed

Comments

  •  1
    Yasin started the conversation

    Hi P.

    On a full background block, the Title and Subtitle are both white.
    I was wondering if you can change this setting with a simple css?


  •  234
    Elena replied

    Hi Yasin,

    As I showed you in a previous ticket, you can use Chrome's inpector tool to detect a selector to be used to add some custom CSS. For example:

    .is-text-light h2,
    .is-text-light .block-subtitle {
      color: #000;
    }


    If you want to change the color of a specific section only, you can prepend the section ID and be more specific:

    #promo-natale .is-text-light h2,
    #promo-natale .is-text-light .block-subtitle {
      color: #000;
    }


    Cheers, P.

  •  1
    Yasin replied

    Thanks so much!

  •  234
    Elena replied

    No worries!

  •  1
    Yasin replied

    Hi can I add a small question to this?

    Is it somehow possible to make these blocks less in height?

  •  234
    Elena replied

    Sure, but it may be much more tricky and, unfortunately, we are unable to provide full support on theme customisations, I am sorry.

    I'll point you on the right track: look for the CSS selector as I showed in a previous ticket, then you can try adjusting the block height with min-height and height properties and vh values.

    E.g. 

    #promo-natale { min-height: 80vh; }

    or 

    #promo-natale { min-height: 600px; }