Welcome to the nuBuilder forums!

Please register and login to view forums and other content only available to registered users.

[Tip] Increase nuBuilder's font size

Information about updates, news, Code Library
admin
Site Admin
Posts: 2778
Joined: Mon Jun 15, 2009 2:23 am
nuBuilder Version: 4.5

[Tip] Increase nuBuilder's font size

Unread post by admin »

To increase nuBuilder's font size add this css under Setup-> Style:
(Add other classes, modify the font sizes as you like)

font_size.png
font_size.png (18.72 KiB) Viewed 417 times

Code: Select all

.label {
    font-size: 18px;
}


.nuButton {
    font-size: 18px;
}

.nuActionButton  {
   font-size: 16px;
}

.nuSection {
    font-size: 18px;
}

.nuBody {
    font-size: 18px;
}


.nuTab {
    font-size: 18px;
}

.js {
    font-size: 18px;
}

.sql {
    font-size: 18px;
}

.html {
    font-size: 18px;
}

textarea.css {
    font-size: 18px;
}

.nuNotBreadcrumb {
   font-size: 18px!important;
}

.nuBreadcrumb {
   font-size: 18px!important;
}

input {
   font-size: 16px;
}
Post Reply