TheCripZone Team is proud to release the Ambassador theme. You can see a demo here. If you don't see it use the Theme Changer in the top left TP block:
https://jpr62.com/demos214/
You can download the release here:
https://github.com/Crip-Zone/Ambassador/releases
Looks good! O0
I totally forgot to add this here. LOL We finished that one awhile ago. LOL
Hi guys, I'm new to this forum, even though I've been using your themes on my forums for many years, like Whitebox, ambassador for 2.0 and darkmodern and someone else whose name I can't remember now (it's normal after a long time)
In these days I'm doing tests for SMF 2.1.4 and I've inserted the ambassador theme (nice as always) and I have a question:
How can I center my banner at the top of everything?
By entering the URL the image is displayed off-centre to the left but I like to see it perfectly in the centre.
Unfortunately I'm not good and even looking at the index.css I couldn't find the solution.
Thanks for your help
Hi Lucarella, and welcome aboard! :)
Please post a link to your website, so I can see what the problem is. :)
This is the testing forum where I'm working https://luke76.net/index.php
While this is the main one that as soon as I'm ready I'll have to move on to 2.1.4 https://dd-crew.net/forum/index.php
Try this... Find this in index.css:
h1.forumtitle a {
color: #a85400;
text-shadow: 1px 1px 1px rgba(0,0,0,.3);
}
And change it to:
h1.forumtitle a {
color: #a85400;
text-shadow: 1px 1px 1px rgba(0,0,0,.3);
display: flex;
justify-content: center;
align-items: center;
}
It works perfectly, now my banner is centered perfectly.
The only bad thing now is the smflogo which I can't remove.
Thank you
Look in your 'Current Theme' settings and look for 'Logo image URL:'. If there is anything in it, just delete it.
No, there is nothing, the box is empty :(
Backup index.template.php and find this:
echo '
', empty($settings['site_slogan']) ? '<img id="smflogo" src="' . $settings['images_url'] . '/smf4.png" alt="Simple Machines Forum" title="Simple Machines Forum">' : '<div id="siteslogan">' . $settings['site_slogan'] . '</div>', '';
Change it to this:
/* echo '
', empty($settings['site_slogan']) ? '<img id="smflogo" src="' . $settings['images_url'] . '/smf4.png" alt="Simple Machines Forum" title="Simple Machines Forum">' : '<div id="siteslogan">' . $settings['site_slogan'] . '</div>', ''; */
I hope that helps. :)
It worked, you're great O0
Now I'm waiting for the new Darkmodern ;)
For future reference in order to remove the SMF logo the easiest way without coding is to go into Admin>Configuration>Current Theme and in the box for 'Site slogan' put your cursor in it and press space, then click on 'Save' and it's gone.
By doing it that way you always have the option to go back and put your own slogan in it at a later date
The simplest solutions are always not considered :2funny:
LOL, for as long as I've been using SMF, I should've known that. LOL
Removed extra spacing in slider.min.css and updated in Github as Ambassador v214b.
https://github.com/Crip-Zone/Ambassador/releases/download/v2.1.4/Ambassador214b.zip
Here's the fix for the 'notify alert/email' dropdown. Find '.notify_dropdown span' and add the last two lines to it found about line 4168:
.notify_dropdown span {
font-size: 0.9em;
display: block;
max-width: 500px;
}
EDIT: Updated the latest release on Github:
https://github.com/Crip-Zone/Ambassador/releases/tag/v2.1.4c