News:

This is the third lot of news

Main Menu

Drop menu, top menu

Started by Dave, Jan 17, 2023, 03:19 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

Dave

In the top menu drop box for the user, the font is factionally too large. If you look at the before image below you'll see that 'Account Settings' and 'Look and Layout' are on 2 lines

To fix it go to index.css find on line 9

font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
and change it from 78% to 80%

The after image shows you they're now on 1 line each making the box smaller once opened





[attachment deleted by admin]

Bocool

You should change it here or you'll make all text smaller and not just the profile links/text:

.profile_user_links li {
  font-size: .8rem;
  line-height: 2em;
  padding-left: 24px;
  text-indent: -24px;
  -webkit-hyphens: auto;
  hyphens: auto;
}

To:
.profile_user_links li {
  font-size: .7rem;
  line-height: 2em;
  padding-left: 24px;
  text-indent: -24px;
  -webkit-hyphens: auto;
  hyphens: auto;
}