djonnie 14 Posted February 15, 2016 Posted February 15, 2016 I'd like to ask how to remove the "If you like..." suggestions from the movie details page. Cannot figure it out how to do this using css. Thanks!
Happy2Play 9445 Posted February 15, 2016 Posted February 15, 2016 /*Hide Recommendations/Because you watched*/div.recommendations.homePageSection {display: none !important;}
djonnie 14 Posted February 15, 2016 Author Posted February 15, 2016 thanks it seems the items disappear, but only in Folder view in "normal" view it's still there
djonnie 14 Posted February 15, 2016 Author Posted February 15, 2016 Hmm, when I manually change the "block" to "none" the block disappears. Don't know how to change it in css though...
djonnie 14 Posted February 15, 2016 Author Posted February 15, 2016 Fixed it brute force by removing these lines from itemdetails.html: <div id="similarCollapsible" style="display: none;" class="detailSection"> <h1 class="similiarHeader"></h1> <div id="similarContent"></div> </div>
dimmie83 0 Posted April 15, 2016 Posted April 15, 2016 Fixed it brute force by removing these lines from itemdetails.html: <div id="similarCollapsible" style="display: none;" class="detailSection"> <h1 class="similiarHeader"></h1> <div id="similarContent"></div> </div> I had the same issue, and this will work for me in css #similarContent { display: none; } #similarCollapsible { visibility: hidden; }
Happy2Play 9445 Posted April 15, 2016 Posted April 15, 2016 Fixed it brute force by removing these lines from itemdetails.html: <div id="similarCollapsible" style="display: none;" class="detailSection"> <h1 class="similiarHeader"></h1> <div id="similarContent"></div> </div> This will return with every update, as the system folder is replaced. Hmm, when I manually change the "block" to "none" the block disappears. Don't know how to change it in css though... Sometimes you have to add "!important" after "none". As you would say brute force. {display: none !important;} Removes from movie view. /*Remove If you like from movies*/ #similarCollapsible {display: none !important;}
Recommended Posts
Create an account or sign in to comment
You need to be a member in order to leave a comment
Create an account
Sign up for a new account in our community. It's easy!
Register a new accountSign in
Already have an account? Sign in here.
Sign In Now