records per page sentence color problem

egurevich

Member
I added the following paragraph to the CSS file in order to change the color of the "records per page" sentence.

/* dropbox "records per page" sentence*/
.records_per_page {
color: red;
}

However it does not change and remains the same as the rest of the text in the database.

Can someone tell to me what I am doing wrong. How can I get its color to change?

Thanks
Eli
 

DebbieS

DaDaBIK Guru
Did you add the class to the container holding the text for the page? Normally this text is somewhere in the language file or in business_logic.php. Just apply that class to the text you want to appear on.

 

DebbieS

DaDaBIK Guru
On or about line 4103 in business_logic.php, look for this line (copy text and search for it):

$records_per_page_form .= ' '.$normal_messages_ar['records_per_page'];

Add the style you defined to this:

$records_per_page_form .= ' <span class="records_per_page">'.$normal_messages_ar['records_per_page'].'</span>';

That should apply the class to the text.

 
Top