Hello. I am a beginner on sharepoint, given the task of creating a very simple sharepoint site for file and information distribution.
The front page is your standard wiki page, residing within the “site pages” folder. The page itself shows the title of the page, literally called “home page” in norwegian (Hjemmeside). It kind of messes up the design.
How can I remove this?
Regards
Espen, Norway
?width=750
Hello,
It’s likely that “Home” is the default link to your site if you enabled global navigation (not a direct link to a page).
Not sure if it’s the best way, but we handle this (along with a few other tweaks) via the site collection alternate css feature. You can get to from yoursite/_layouts/15/ChangeSiteMasterPage.aspx under “Alternate CSS URL”.
Here’s what I have in our alternate .css file so far, hope it helps.
/* Hide the default site link from the top navigation: */
.ms-breadcrumb-top ul.ms-core-listMenu-root>li.static>a.static.menu-item{
       display:none;
}
/* Hide the “EDIT LINKS” from top navigation */
#DeltaTopNavigation .ms-core-listMenu-root .ms-listMenu-editLink{
       display: none;
}
/* Hide the “Site Contents” link on the left side Quick Launch menu */
#sideNavBox a[href$=”/_layouts/15/viewlsts.aspx”]
 {
   display: none;
 }
Thank you for the response. I am afraid it didn’t accomplish anything. I tried to insert your code by going Insert->”Embed Code”. All it did was printing the code as plain text on the home page. Did I do something wrong?
Hi ,
I would suggest you to use Jquery to remove or hide the page title use below script.
//if you want to remove
$(“#pageTitle”).children().children().children().find(‘a’).remove();
//if you want to hide
$(“#pageTitle”).children().children().children().find(‘a’).hide();