How can I remove the text in the header?

  • bulltax
    Asked on February 4, 2016 at 12:31 PM

    How can I remove the text in the header? Image 1 Screenshot 20

  • victor
    Replied on February 4, 2016 at 2:23 PM

    If I understand you correctly, you would like to remove the text in the header. To remove the entire text you can just inject the following CSS code

    #cid_10 div.header-text {

        display : none;

    }

    This will remove the text. Since there is no more text the background image will also be adjusted. To correct this just use the following CSS code

    #cid_10 div.form-header-group {

        height : 95px;

    }

    How can I remove the text in the header? Image 1 Screenshot 20

    Please let us know if this helps.

  • bulltax
    Replied on February 5, 2016 at 6:38 PM

    here an error

    How can I remove the text in the header? Image 1 Screenshot 20

  • Welvin Support Team Lead
    Replied on February 5, 2016 at 8:18 PM

    You have to remove the whitespace between # and cid. It should be #cid.