<span class="qte-attr qte_31_32-qte">3.1.x & 3.2.x</span>
taledus
Users
Posts: 83 Joined: 10 years ago
Post
by taledus » 10 years ago
Sniper_E wrote: 10 years ago
That is an excellent idea. You have changed my mind. I'm set now...
partner_img.gif
And that works even better because I had to adjust the height of spaceace's bg_header image for it to look right.
I would not be able to do that by linking to his image. I don't care what dmzx says about you... You are a genius.
It looks like you need to extend the height on my bg_header image for the bar to show across the bottom.
And it looks like dm needs to shorten the height on my bg_header image.
Are you two using different padding? Why would they look different? I put my site in at my place and it looks right.
I use padding: 10px; in the .partners-logo class and max-height: 68px; in the img.partners-logo-img class.
How did he get the extra field for the background image?
clight77
Donator
Posts: 508 Joined: 11 years ago
Post
by clight77 » 10 years ago
Good idea to host your own images, makes resizing easy :)
killfrenzy
Users
Posts: 118 Joined: 10 years ago
Post
by killfrenzy » 10 years ago
I have problem I always saw this in my index
Code: Select all
Information: You have requests for new partners. Please go to your ACP and check them! But when I checked in my ACP it doesn't show any new partner?
clight77
Donator
Posts: 508 Joined: 11 years ago
Post
by clight77 » 10 years ago
ACP/Group Permissions/registered users --- or any group that you don't want to allow adding a new partner.
MISC/
Can add partners to Partner Page Set to NO
Don't know why anybody but Admin can add a new partner... lol
killfrenzy
Users
Posts: 118 Joined: 10 years ago
Post
by killfrenzy » 10 years ago
clight77 wrote: 10 years ago
ACP/Group Permissions/registered users --- or any group that you don't want to allow adding a new partner.
MISC/
Can add partners to Partner Page Set to NO
Don't know why anybody but Admin can add a new partner... lol
I already set to NO except ADMIN but my problem can't delete or remove this
Code: Select all
You have requests for new partners. Please go to your ACP and check them!
It's annoying but when I click I see no request for partner
clight77
Donator
Posts: 508 Joined: 11 years ago
Post
by clight77 » 10 years ago
Have you tried to disable and then enable partners ext ?
neo13220
Users
Posts: 9 Joined: 9 years ago
Post
by neo13220 » 9 years ago
Hello,
How to make the "description" field mandatory because this is not currently the case.
Have a good day.
newsbee
Users
Posts: 10 Joined: 9 years ago
Post
by newsbee » 9 years ago
Does it work with 3.2?
Thanks
faroud
Users
Posts: 141 Joined: 11 years ago
Post
by faroud » 5 years ago
Is it suitable for 3.3.4?
or should we wait a while
regards
TheDjRider
Users
Posts: 13 Joined: 7 years ago
Post
by TheDjRider » 5 years ago
Here is my translation for the Partner Page. I hope this will help our Bulgarian friends.
bg-partner.zip
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.
SpIdErPiGgY
Users
Posts: 123 Joined: 5 years ago
Post
by SpIdErPiGgY » 8 months ago
partnernew.zip
Demo: https://www.phpbbextnl.be/partner
📌 HTML Changes – Overview & Explanation
🔷 Changes in Partners Overview (dm_partners_body.html)
Title class added
From:
To: Code: Select all
<h2 class="section-title">{{ lang('PARTNERS') }}</h2>
“No partners” block styled
From: standard div
To:
Button bar modernized
From:
To:
Button styled with modern classes
Added:
Partner card wrapper added
From:
To:
Partner text cleaned up
From: multiple
To:
Partner counter placed in its own div
From:
To: Code: Select all
<div class="partner-counter">[{{ partners.COUNTER }}]</div>
Logo wrapper improved
From:
To: Code: Select all
<dd class="partner-logo-wrapper"><div class="partners-logo">
Inline CSS minimized
Dynamic background-image kept, all other inline styling removed.
🔷 Changes in “Add Partner” page (dm_partners_add_body.html)
Title class added
From: Code: Select all
<h2>{{ lang('DMP_TITLE_ADD') }}</h2>
To: Code: Select all
<h2 class="section-title">{{ lang('DMP_TITLE_ADD') }}</h2>
Description given its own class
Added:
Panel modernized
Added:
Form layout improved
All fields now use: or
Form rows made consistent
Every transformed into a clean structure via
Legend added for clarity
Code: Select all
<legend>{{ lang('DMP_NEED') }}</legend>
Submit buttons modernized
Submit →
Reset →
🔷 What Was NOT Changed
No Twig logic modified
No variables changed
No loops touched
No functionality changed
No form field names modified
No ACP structure affected
Fully compatible with prosilver & extensions
🔷 Summary
The HTML has been modernized with:
Better structure (cards, action-bar, form-panel)
Consistent buttons
Cleaner spacing and paragraph structure
Improved form layout
Less inline code
Fully responsive and ready for modern CSS
🔷 New Colors
Base color changed to: #385F85
Hover color slightly darker: #2f4f70
Active/focus color darker: #263f57
Removed bright blue
No more color flashes when clicking
🔷 Hover & Active Improvements
Hover now becomes subtly darker instead of bright
Active/focus always stays blue, never grey or white
Hover text remains readable (not bold, no glow)
Smooth transitions added
🔷 Glow / Highlight Completely Removed
These effects are completely disabled:
No more box-shadow
No more text-shadow
No hover glow
No active glow
No brightness / filter effects
No internal grey “click flash” (inset-shadow removed)
🔷 Improved Readability
Text is always font-weight: normal
No bold hover text
No white/grey overlay when clicking
Consistent and calm color contrast
🔷 Technical CSS Rules (Summary)
New background colors applied
Hover/active/focus fully overridden with !important
All default phpBB button effects disabled
Focus-visible outline removed
Smooth background-color transition added
🔷 Full CSS Code Applying All Changes
Code: Select all
.button-primary {
background: #385F85;
color: #fff !important;
border-radius: 6px;
padding: 6px 12px;
font-weight: normal;
box-shadow: none !important;
text-shadow: none !important;
filter: none !important;
transition: background 0.15s ease;
}
.button-primary:hover {
background: #2f4f70;
box-shadow: none !important;
text-shadow: none !important;
filter: none !important;
}
.button-primary:active,
.button-primary:focus,
.button-primary:focus:active {
background: #263f57 !important;
color: #fff !important;
box-shadow: none !important;
text-shadow: none !important;
filter: none !important;
outline: none !important;
}
.button-primary:focus-visible {
outline: none !important;
}
You do not have the required permissions to view the files attached to this post! Maybe your post count is too low.