Jump to content

Remove / Change Most Recent


igeoorge
Go to solution Solved by Happy2Play,

Recommended Posts

igeoorge

I already researched the entire forum and did not find it. Could someone show me how I can remove or change this "newer" with CSS? I want to be able to leave only the name chosen when creating the folder.

 

5c7052890955d_asasas.png

Link to comment
Share on other sites

Happy2Play

I already researched the entire forum and did not find it. Could someone show me how I can remove or change this "newer" with CSS? I want to be able to leave only the name chosen when creating the folder.

 

5c7052890955d_asasas.png

 

Can you explain exactly where this is.  

 

I can only assume this is the "Lastest 'libraryname'" on the Home screen.  If so the code will be section specific.  

 

Are you looking to remove just the header or the entire section?  What exactly are you trying to do?

Edited by Happy2Play
Link to comment
Share on other sites

igeoorge

Some older people in the hotel have certain difficulties to understand. So if I could remove it, it would be very good. Exactly, this is the "Lastest 'libraryname'" on the home screen. I'm trying to remove only the most recent name that come by default. I would just leave the folder name determined by me.

 

5c706e906ac30_wewewe.png

Link to comment
Share on other sites

  • Solution
Happy2Play

It is hard to give you exact code as everyone's setup is different so sections and child items (libraries) can be different.

 

General code is something like this.  This changes the header for MY Latest Movies as it is Section 3, second item (section layout is determined User Preferences-Home Screen) most of the time.  You can "right click" on the header and select "inspect" to open the browser console to see this information.

/*Replace Section Header title*/
#homeTab div.section3 div:nth-child(2) h2 {  text-indent: -9999px;
  line-height: 0; /* Collapse the original line */
}
#homeTab div.section3 div:nth-child(2) h2:after {
  content: "Movies";
  text-indent: 0;
  display: block;
  line-height: initial; /* New content takes up original line height */
}

If you only have one library then your child will be 1 but section could still be anything.

 

http://jsfiddle.net/jvandyke/U52Tt/

  • Like 1
Link to comment
Share on other sites

Happy2Play

Lord, please. How can I make this bar transparent?

 

5c7089d106bf6_asasas.png

 

Something like this.

/*Make skinHeader transparent*/
div.skinHeader  {background-color: transparent; }
div.skinHeader-withBackground {background: transparent; }
Link to comment
Share on other sites

  • 5 months later...
Travis Runyard

If you're using the Midnight Campfire theme, it will leave a shadow around the skinHeader in 4.1.1.0. The following will override it:

.skinHeader-withBackground {background: transparent !important; -webkit-box-shadow: none !important; opacity: 1;}

Or you can remove the header styling from Midnight Campfire:

/* HEADER STYLE */
.skinHeader-withBackground {
   background-color: rgba(0,0,0,.90) !important;
   border-bottom: transparent !important;
   -webkit-box-shadow: 0 0.25em 0.29em 0 rgba(0,0,0,.90) !important;
   box-shadow: 0 0.25em 0.29em 0 rgba(0,0,0,.90) !important;
}
.skinHeader.semiTransparent {
   background: -webkit-gradient(linear,left top,left bottom,from(rgba(0,0,0,.9)),to(rgba(0,0,0,0.3))) !important;
   background: -webkit-linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,0.3)) !important;
   background: -o-linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,0.3)) !important;
   background: linear-gradient(rgba(0,0,0,.9),rgba(0,0,0,0.3)) !important;
   border-bottom: none !important;

tM2XWMh.png

 

K9N8WFN.png

Edited by visualblind
Link to comment
Share on other sites

  • 2 years later...
gtpvkr

With below code able to hide latest test in web interface for all sections 

.sectionTitleTextButton>.sectionTitle {
    margin-bottom: 0;
    margin-top: 0;
    overflow-x: hidden;
    text-: -62px;
}

 

Link to comment
Share on other sites

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 account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...