Free CSS: Make the "My Home Page" titlebar (and other titlebars) more compact

  • 3 August 2022
  • 2 replies
  • 95 views

Userlevel 7
Badge +5

/*shrink the "my home page" bar*/

#page-title__wrapper.hyd-shadow-md.ng-star-inserted { 

    min-height: 50px !important;

    height: 50px !important;

}


2 replies

Userlevel 7
Badge +3

You might want to consider moving away from defined pixels and use a more responsive metric like em or rem or %, this way it adjusts to scale with the page on all device types, info on unit types here:

https://www.w3schools.com/CSS/css_units.asp

or at least might want to add some breakpoints to your CSS to change the absolute pixels at like phone/tablet/desktop commonalities, but in today’s world those get VERY hard to define and keep updated.

Going this route will also make the use of min-height and height simultaneously more useful, since right now they will always be the same, but if relative, then the height could be bigger, but never be smaller than your min-height of 50px.

Userlevel 7
Badge +5

I believe I tried % before and it didn’t work. Any suggestions?

Reply