Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
Posted March 23, 20214 yr Hello, I would like hide the Forums and the Start Discussion button, without affect elements of anothers pages. The Start Discussion is duplicated, there already have the Plus ➕ to start a topic.
March 23, 20214 yr Author @media screen and (max-width: 979px) .ipsResponsive_block { display: none; } it can not hide the button
March 23, 20214 yr Author @media screen and (max-width: 979px) .ipsToolList.ipsToolList_horizontal { display: none; } still not work...😵
March 23, 20214 yr Author Anyone can suggest another solution? Forums title and Start new topic button, as Desktop and mobile, I would like have it hidden...
March 23, 20214 yr Author Finally I found this solution to hide Forums title But still miss hide button "Start new topic" solution...
March 23, 20214 yr Would you want the view selector removed as well? Also you know the above is in KS already right 🙂
March 23, 20214 yr Author 36 minutes ago, All Astronauts said: Would you want the view selector removed as well? Also you know the above is in KS already right 🙂 Thanks, by now only this adjustment need to be made, due it is for a pre-sale project, is a little hard purchase an App only for hide the botton purpose... Hope you don't feel because I don't want to buy your app...
March 23, 20214 yr Author yes, I think I found the solution... .ipsToolList_horizontal > .ipsToolList_primaryAction .ipsButton:not( .ipsButton_link ) { padding: 0 40px; display: none; } .ipsBreadcrumb_top { margin-bottom: 0px; }
March 23, 20214 yr Author I use below css code and it work, but the Clubs page is affected...how can I adjust it to orginal position?
April 8, 20214 yr You need to be very careful when deciding what elements to target with css. Many of the classes which you're editing are used globally, so if you try removing .ipsToolList.ipsToolList_horizontal, you'll be affecting many areas of the site. To remove the Forums title and the Start New Topic button (on both desktop and mobile), add this to custom.css .cForumHeader, .cForumHeader + .ipsToolList{ display: none !important; } Keep in mind that the viewing options (table, grid and fluid) will also be removed. If you need those to stay, let me know. Wrap the above code with a media query if you only want to target mobiles.
April 8, 20214 yr Author 3 hours ago, Ehren said: .cForumHeader, .cForumHeader + .ipsToolList{ display: none !important; } Super clean and easy...thanks How it will be if we want the fluid option available?
April 8, 20214 yr This should do it: .cForumHeader .ipsType_pageTitle, .cForumHeader .ipsToolList_primaryAction, .cForumHeader + .ipsToolList{ display: none !important; } .cForumHeader .ipsToolList{ margin-left: auto !important; }