Some people have asked if it's possible to make the "Site Stats" area 2 columns instead of 3 columns. This is handy for Dolphin sites that have a smaller width, if you have a 3 column main/index page and don't have extra room for all three columns. Maybe you just prefer 2 columns instead of 3.
This is a fast and simple css edit.
First backup the original...you never know, it's always a good idea to backup.
Open:
/templates/tmpl_uni/css/index.css
Find:
.siteStatUnit
{
position: relative;
float: left;
width: 33%;
}
Simply make the width: 33% bigger.
Something like this is usually sufficient depending on your template and width of your site:
.siteStatUnit
{
position: relative;
float: left;
width: 42%;
}
Just play around with different percentages larger than 33% until you achieve the results you are looking for.
If you use a template other than the default tmpl_uni look for a similar file and location in your particular template directory/folder such as:
/templates/template_name/css/index.css
Good Luck and Have Fun!!
Screen Shot Original 3 Column:
Screen Shot After 2 Column: