No I didn't think Pageblaster had an effect, I was just trying to find an explanation.
/* ======== SQLGridSelectedView Custom Styles ======== */
.SGSV_Grid {
background-color: White;
border-color: LightGrey;
border-width: 5px;
border-style: Solid;
border-collapse: collapse;
margin: 2px
}
.SGSV_GridItem {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
}
.SGSV_GridAlternateItem {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
background-color:#E8E8E8
}
.SGSV_GridHeader {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SGSV_GridFooter {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SGSV_GridColumn {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal
}
.SGSV_GridPages {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SGSV_Header {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SGSV_Footer {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SGSV_Prompt {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
/* additional styles */
.SGSV_Normal {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
}
.SGSV_NormalBold {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
/* ====== SQLPageSelectedView Custom Styles ========== */
.SPSV_Grid {
background-color: White;
border-color: LightGrey;
border-width: 1px;
border-style: Solid;
border-collapse: collapse;
margin: 2px
}
.SPSV_GridItem {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
}
.SPSV_GridAlternateItem {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
background-color:#E8E8E8
}
.SPSV_GridHeader {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold;
}
.SPSV_GridFooter {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SPSV_GridColumn {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
}
.SPSV_GridPages {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SPSV_Header {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SPSV_Footer {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
.SPSV_Prompt {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
/* additional styles */
.SPSV_Normal {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: normal;
}
.SPSV_NormalBold {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold
}
According to the instructions it should be possible to customise the css styles and further to be able to create extra specific css styles to be assigned to selected SQL expressions (which I am hoping to eventually achieve).
However in the meantime, I can't even get the font colours to change. e.g.:
Default:
.SPSV_GridHeader {
font-family: Tahoma, Arial, Helvetica;
font-size: 11px;
font-weight: bold;
}
My style:
.SGSV_GridHeader
{font: bold small-caps 1.2em Arial, Helvetica, sans-serif; color:#fff; text-align:center; background-color:#50658F; }
The background colour and text alignment will change but the font remains black instead of white (#fff;) on my edited dark blue background.
I have tried to replace the default module.css with my own:
/* ======== SQLGridSelectedView Custom Styles ======== */
/* sets the data grid */
.SGSV_Grid { background-color: White; border: solid #0D1D43 5px; margin: 2px; }
/* sets the grid item row */
.SGSV_GridItem, .SGSV_GridAlternateItem { font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
/* sets the alternate item row */
.SGSV_GridAlternateItem { background-color:#e6e6e6;}
/* sets the items displayed */
.SGSV_GridHeader
{font: bold small-caps 1.2em Arial, Helvetica, sans-serif; color:#fff; text-align:center; background-color:#50658F; }
/* sets the class for the record count, time stamp and page counts */
.SGSV_GridFooter { font: bold 0.9em family: Tahoma, Arial, Helvetica; color:#000;}
/* default by all columns */
.SGSV_GridColumn { font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
/* sets the class used by the page links when paging is enabled*/
.SGSV_GridPages { font: normal 0.9em Arial, Helvetica, sans-serif; }
.SGSV_Header { text-align:center; font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
.SGSV_Footer { font: bold small-caps 0.9em Arial, Helvetica, sans-serif; color:#000; }
/* sets the class for the labels */
.SGSV_Prompt { font: bold small-caps 0.9em Arial, Helvetica, sans-serif; color:#000; }
/* additional styles */
.SGSV_Normal { font: normal 0.9em Arial, Helvetica, sans-serif; color:#000; }
.SGSV_NormalBold { font: bold 0.9em Arial, Helvetica, sans-serif; color:#000; }
/* ====== SQLPageSelectedView Custom Styles ========== */
.SPSV_Grid { background-color: White; border: solid #0D1D43 5px; margin: 2px; }
.SPSV_GridItem, .SPSV_GridAlternateItem{ font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
.SPSV_GridAlternateItem { background-color:#e6e6e6;}
.SPSV_GridHeader {font: bold small-caps 1.2em Arial, Helvetica, sans-serif; color:#fff; text-align:center; background-color:#50658F; }
.SPSV_GridFooter { font: bold small-caps 0.9em Arial, Helvetica, sans-serif; color:#000; }
.SPSV_GridColumn { font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
.SPSV_GridPages { font: normal 0.9em Arial, Helvetica, sans-serif; }
.SPSV_Header { text-align:center; font: bold 1.0em Arial, Helvetica, sans-serif; color:#000; }
.SPSV_Footer { font: bold small-caps 0.9em Arial, Helvetica, sans-serif; color:#000; }
.SPSV_Prompt { font: bold small-caps 0.9em Arial, Helvetica, sans-serif; color:#000; }
/* additional styles */
.SPSV_Normal { font: normal 0.9em Arial, Helvetica, sans-serif; color:#000; }
It is so frustrating, I have put this module on many pages, here is an example of just one:
http://www.a2zdom.com/Domains/AZDomains/ADomains.aspx
I would welcome any suggestion.
Regards
Lynn
.SPSV_NormalBold { font: bold 0.9em Arial, Helvetica, sans-serif; color:#000; }