• Hi there

    In WordPress, as much as I know

    • the page title is always shown on the respective page.
    • you always have to set the front page which is a static or blog page

    I have a person using this beautiful theme but has a dilemma.
    She has named the frontpage “Home”, and this title is being shown below the content boxes, which is a bit awkward.

    She would like to retain the menu item “Home” BUT not have the page title “Home” below the content boxes. See image: https://bit.ly/1NXkBzA

    She would like however to have content below the content boxes, which I guess should be on the page set to be the static front page.

    How can this be done?
    Can one suppress the page title, ONLY for the front page – which I hope does not leave a gap in its place? If so, exactly what code is needed & where should it be placed (in a child theme)?

    Any help would be very much appreciated.

    Regards

Viewing 12 replies - 1 through 12 (of 12 total)
  • Hi,

    Please provide the website url.

    Thanks!

    Thread Starter xprt007

    (@xprt007)

    Hi there

    Thank you for responding.

    We have in the meantime tried with the code

    .home .entry-title {
        display: none;
    }

    in the Custom CSS box and as you see at https://bit.ly/1hHRcMj the title has indeed disappeared (ONLY) on the front page.

    That is roughly what is needed.
    Is that the best way to do this, though?

    I guess that just suppresses the printing of the title & its space is now blank. Is it possible to pull the content a little bit up, for only the front page & if so, what could would do it?

    Thank you in advance & regards

    Hi,

    Please use the following codes in your Theme Options -> Custom CSS

    .home .entry-content {
        position: relative;
        top: -25px;
    }

    Thanks!

    Thread Starter xprt007

    (@xprt007)

    Hi there

    That did it, thank you. ??

    One more question, …

    I would like to change the listing style to use a non-image solution, which I thought comes from using this => `list-style-image:url(‘library/media/images/list-style.png’);
    }`

    I somehow failed to get the correct css element to change this.
    How do you go about this?

    Once again, many thanks

    Regards

    Hi,

    Please post an example for me.

    Thanks!

    Thread Starter xprt007

    (@xprt007)

    I hope I described this using the right terms … ??

    Under the sentence “Unsere qualifizierten und telc-lizenzierten Lehrkr?fte informieren on https://bit.ly/1UDfU27 :” is an un-ordered list of items. I would like to suppose “>” is an image “library/media/images/list-style.png” or if I am mistaken, I just want it to be the usual elements like =>

    • <= this

    ??
    to

    • über das Testformat und die Zeitvorgaben der Prüfung
    • geben Empfehlungen zur Bew?ltigung der Prüfungsteile: Lesen, Schreiben, H?ren und Sprechen
    • trainieren diese Prüfungsteile w?hrend des Unterrichts

    Thank u & kind regards

    Hi,

    Please use the following codes in your Theme Options -> Custom CSS

    .textItem li {
        list-style-image: none !important;
        list-style-type: square !important;
    }

    Screenshot https://prntscr.com/8eu6s1

    Thanks!

    Thread Starter xprt007

    (@xprt007)

    Very much appreciated …
    Thank you.

    Hi,

    Please set the thread to resolved.

    Thanks!

    Thread Starter xprt007

    (@xprt007)

    Resolved! ??

    Thread Starter xprt007

    (@xprt007)

    Hi,

    Sorry I had marked this as resolved, but for some reason,

    .textItem li {
        list-style-image: none !important;
        list-style-type: square !important;
    }

    seems to work only on some pages, like the one mentioned above of the screenshot (in the meantime removed), but not others like the “Kontakt” page or the widget box in the left sidebar.

    Is it possible to make this side-wide?

    Regards

    Hi,

    Please try the following code for contact page.

    .entry-content.article ul li {
        list-style-image: none !important;
        list-style-type: square !important;
    }

    Please post a list in your sidebar for me to look at.

    Cannot use a universal ul li, it will also affect the menu, which is also made up of HTML list.

    Thanks!

Viewing 12 replies - 1 through 12 (of 12 total)
  • The topic ‘Getting rid of page title on frontpage?’ is closed to new replies.