How to reduce forum image top space

For support and discussion related to templates, themes, and imagesets in phpBB 3.2.
Lsha
Registered User
Posts: 111
Joined: Mon Feb 25, 2019 10:38 am

How to reduce forum image top space

Post by Lsha »

i added forum icon, but it looks like forum image height is not center from top to bottom. could anyone guide me how to reduce top space of forum image (prosilver style)?
Image
Last edited by Lsha on Fri Oct 18, 2019 2:57 am, edited 1 time in total.
User avatar
Raul [ThE KuKa]
Style Customisations
Style Customisations
Posts: 11138
Joined: Mon Dec 08, 2003 9:24 pm
Location: Spain
Name: Raul Arroyo

Re: How to deduce forum image top space

Post by Raul [ThE KuKa] »

Hi,

dl.row-item use a background-size: 32px; you can use images of that same size (32x32px.)

Open styles/prosilver/theme/content.css file and find:

Code: Select all

.forum-image {
    float: left;
    padding-top: 5px;
    margin-right: 5px;
}
Replace with:

Code: Select all

.forum-image {
    float: left;
    /*padding-top: 5px;*/
    margin-right: 5px;
}
Purge cache forum.
All unsolicited PMs will be ignored.
:warning: Knowledge Base | Documentation | Board rules | phpBB Styles Rules & Policies | Styles Queue Stats :warning:


If you like my styles, translations, etc. and want to show some appreciation, then feel free to Donate.
:flag_es: phpBB Spain - Online Since 2003 :heart:


Lsha
Registered User
Posts: 111
Joined: Mon Feb 25, 2019 10:38 am

Re: How to reduce forum image top space

Post by Lsha »

thank you

Return to “[3.2.x] Styles Support & Discussion”