Editor - Header

Editor - Header

FreedyFreedy Posts: 33Questions: 5Answers: 0

Hi,
How can I remove the DTE_Header from the Editor window?

Thanks,
Thomas

This question has an accepted answers - jump to answer

Answers

  • allanallan Posts: 63,457Questions: 1Answers: 10,465 Site admin

    You could use div.DTE_Header { display: none; } in your CSS.

    Allan

  • FreedyFreedy Posts: 33Questions: 5Answers: 0

    Hi,
    How do I recalculate the DTE_BODY to resize now there is no DTE_HEADER?

    -Thomas

  • allanallan Posts: 63,457Questions: 1Answers: 10,465 Site admin
    Answer ✓

    Ah yes, sorry. Use:

    div.DTE_Body {
      padding: 0 0 52px 0;
    }
    

    Allan

This discussion has been closed.