(solved) Slight uniformity correction in ACP
Posted: August 21st, 2023, 11:32 pm
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
Replace with this
Locate line 96 which looks like this
Replace with this
Locate line 92 which looks like this
Code: Select all
<dt>{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</dt>Code: Select all
<dt><label for="pg_social_gallery_limit">{{ lang('ACP_PG_SOCIAL_GALLERY_LIMIT') }}</label></dt>Code: Select all
<dt>{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</dt>Code: Select all
<dt><label for="pg_social_photo_limit">{{ lang('ACP_PG_SOCIAL_PHOTO_LIMIT') }}</label></dt>