• Resolved Mykadlo

    (@mykadlo)


    Hello,
    I guess the header, logo and support text appearance can be customized only through css, right?

    I tried to make support text larger by redefining in my custom css as follows:

    header#masthead hgroup .support-text {
    position: absolute;
    top: 50%;
    right: 20%; // default value was 0 – it works

    color: #4b4b4b;
    font-style: italic;
    line-height: 3.2em; // default value was 1,3 – it doesnt work
    margin-top: -0.6em;
    max-width: 300%; // default value was 100% – it did nothing
    }

    But it does not works, the support text does not change. Can you hint me please why the height does not change?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Define your font size.

    header#masthead hgroup .support-text { font-size: 16px; }

    Adjust only if needed; line-height and margin-top.

    Also, the code must be in Child theme stylesheet or Custom CSS option (it needs to go after the main).

    Thread Starter Mykadlo

    (@mykadlo)

    Thanks, it works.
    It seems I have to study some css basics.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Header customization’ is closed to new replies.