Okay
  Public Ticket #1001360
menu
Closed

Comments

  •  2
    jakobhahn started the conversation

    Hi!

    How is it possible to remove the name (and the whole column space) of a page name? 

  •  295
    Paul replied

    Hi there!

    You can use custom CSS to remove the title and its space like this:

    .page .post-title {
        display: none;
    }
    

    If you would also like to use custom CSS for other elements, I recommend Developer Tools on Chrome or Firebug on Firefox to inspect the elements on the page. Then you will know which CSS selector to adjust.

    You can see a tip about that in this article: https://uxbarn.com/inspecting-elements-developer-tools/

    Regards,
    Paul

  •  2
    jakobhahn replied

    ok! I applied the changes but it didn't effect anything in the website? Could it be a cache problem? I do not see that changes in the inspector only in the customizer.

  •  295
    Paul replied

    I see that the page title has already been hidden on this page: http://www.roberthahn-design.de/exhibitions/

    So, I guess you successfully managed to do that?