Is there any plans to add more options into the default.php theme file to pull more info from the overlay file?
For example I wanted to change the font size of the post topic. In order to do so I had 2 choices. One was to edit the font size in the default.php file or I could add a new call to the overlay file and enter the info there.
What I decided to do was create a $PostContentFontSize entry in my overlay file and then edit the default.php file like this.
#spMainContainer .spTopicPostSection .spPostSection .spPostContentSection .spPostContent {
border-top: <?php echo($postBorder); ?>;
color: <?php echo($postColor); ?>;
margin: 5px 0;
padding: 10px;
/* font-size: 90%; */
font-size: <?php echo($PostContentFontSize); ?>;
line-height: 1.2em;
I understand you guys are working on all kinds of things but if you think it would be a good idea to add more of these type of options to the theme and overlay files I could probably help a bit.