Less:.p-title h1 { visibility: hidden; }
Using that instead ofdisplay: none
ensures the buttons remain in the same location.
Does this change your google results or remove the title from google search results?
thanks
That worked for me, many thanks!Less:.p-title h1 { visibility: hidden; }
Using that instead ofdisplay: none
ensures the buttons remain in the same location.
Less:.p-title h1 { visibility: hidden; }
Using that instead ofdisplay: none
ensures the buttons remain in the same location.
I tried using this code in my extra.less, but it is also removing my thread title on the single thread page. I just wanted to remove the title from homepage.
[data-template="forum_list"] {
.p-title-value {
display: none;
}
}
Less:[data-template="forum_list"] { .p-title-value { display: none; } }
/* Homepage Title Remove */
[data-template="forum_list"] {
.p-title-value {
visibility: hidden;
}
}
Otherwise...Thank you, that worked, but it was pushing the buttons from right to left, so I made a small change, and it's working great.
[data-template="forum_list"] {
.p-title-value {
display: none;
}
.p-title-pageAction {
margin-left: auto;
}
}
visibility: hidden;
the element is still "readable" by search engines but maybe it's not a problem in your case.Otherwise...
Less:[data-template="forum_list"] { .p-title-value { display: none; } .p-title-pageAction { margin-left: auto; } }
Withvisibility: hidden;
the element is still "readable" by search engines but maybe it's not a problem in your case.
We use essential cookies to make this site work, and optional cookies to enhance your experience.