Is there anyway to style a list you create on the Self Service page?

Hi Community,

I have been working on displaying some info on a self service page and at the moment, I cannot for the life of me figure out how to style the list I create. I assume the eWare.css does not effect the following:

<%
NewList = eWare.GetBlock("list");
NewList.SelectSql= "SELECT Lead_PersonFirstName, ";
NewList.SelectSql+= "Lead_Stage, ";
NewList.SelectSql+= "Lead_Status FROM Lead WHERE Lead_CreatedDate >= '"+str+"'";
NewList.AddGridCol("Lead_PersonFirstName");
NewList.AddGridCol("Lead_Stage");
NewList.AddGridCol("Lead_Status");

Response.Write(NewList.Execute());
%>


at the moment, this displays the following list (See screenshot), which is not the most attractive looking.


Is there any way to style this list?

Thanks!

Mike