I've noticed lately that my Karma number sometimes pushes the arrow to the next time. For some odd reason this really bothers me so I decided that it needed to be fixed. This really doesn't warrant a full entry but it was bothering me so I figured I would fix it and share the code with anyone who might also want the number and arrow on the same line. The code is very straight forward:
/* Move Karma Title to Left for Larger Numbers */
#dash-stats h3 {
margin: 20px 0px 10px 10px;
}
/* End Move Karma Title to Left for Larger Numbers */
The element that controls this is "#dash-stats h3". What I did was set the margin to 20 pixels from the top, zero pixels from the right, 10 pixels from the bottom, and 10 pixels from the left. This gives the numbers enough space that the arrow fits on the same line. Like I said, it's not a major deal, I just get tired of seeing my arrow bouncing around from one line to the next. (This is a sure sign that I have absolutely no life.)