Menu

How can I make the database buttons on the User View wider

0 votes

I love the buttons but they’re not wide enough for the names of some of the databases we’re using.

in Customization by (7.0k points)

1 Answer

0 votes
 
Best answer

In the Database Preferences you can specify the name of a custom CSS file to load. This would be the best place to place all of the CSS updates for that database. You can also point this to a single corporate CSS style for consistency.

For more details see: Database Preferences

In this CSS file you can add the following to change the button widths.​

​a.dbButton {
    width: 400px;  /* was 200px */
    height: 50px;
    margin: 5px;
    text-align: left; /* Add Left Alignment */ 
}

​You can also use the following width if you want the buttons full width:

    width: calc(100% - 10px);
by (64.3k points)
selected by
Welcome to the dbFront Q&A site, where you can ask questions and receive answers from other members of the community.
 | Minimalist Answer Theme by Digitizor Media
 |
Powered by Question2Answer
...