Jump to content

Back office: Line may break between sub-menu tabs and images


presta-dyr

Recommended Posts

If you have many sub-menu tabs in the back office the line may break between the icon and the text. This can be solved quite simply in css/admin.css. Change:

#submenu li {
   display: inline;
   list-style: none;
   margin: 0 5pt 0 0;
}



to

#submenu li {
   display: inline-block;
   *display: inline;
   list-style: none;
   margin: 0 5pt 0 0;
}



IE6 and IE7 can't do inline-block but the "*display" ensures they will show the tabs the old way.

/Kjeld

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...