I edited the relevant post in that topic with a version that should work with v1.7.9.x beta, and presumably future releases as well.
As you're looking to change the font size as well, this modified version should do that:
using System;
using System.Windows.Forms;
using System.Drawing;
using Telerik.WinControls;
using Telerik.WinControls.UI;
public class VAInline
{
public void main()
{
//Remove window border
Application.OpenForms["frmMain"].FormBorderStyle = System.Windows.Forms.FormBorderStyle.None;
//Change the location of the window
Application.OpenForms["frmMain"].Location = new System.Drawing.Point(-656, 30);
//Set the font color
Color fontColor = Color.FromArgb(233, 124, 39);
//Change the font color for "Profile"
Application.OpenForms["frmMain"].Controls["tableBody"].Controls["lblProfile"].ForeColor = fontColor;
//Change the font color for the "Profile" box
((RadDropDownList)Application.OpenForms["frmMain"].Controls["tableBody"].Controls["cboProfile"]).DropDownListElement.EditableElement.ForeColor = fontColor;
//Change the font color for the log
RadListView log = ((RadListView)Application.OpenForms["frmMain"].Controls["tableBody"].Controls["lvMain"]);
log.ListViewElement.ForeColor = fontColor;
//Set the font size
Font logFont = new Font(log.ListViewElement.Font.FontFamily, 10);
//Change the font size for the log
log.ListViewElement.Font = logFont;
}
}
Don't forget to change the referenced assemblies as mentioned in the original topic.
Also note that previous restrictions apply: This is unofficial, and if it breaks from here on, likely unsupported.