Page 1 of 1

(solved) Slight uniformity correction in ACP

Posted: August 21st, 2023, 11:32 pm
by Mandi
In the ACP, PG Social Settings, Settings Album, the Limit albums and Limit photos for albums wasn't in bold font. To correct this for a more uniform look, go to ext/pgreca/pgsocial/adm/style and open the file pg_social_body.html

Locate line 92 which looks like this

Code: Select all

<dt>{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</dt>
Replace with this

Code: Select all

<dt><label for="pg_social_gallery_limit">{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</label></dt>
Locate line 96 which looks like this

Code: Select all

<dt>{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</dt>
Replace with this

Code: Select all

<dt><label for="pg_social_photo_limit">{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</label></dt>