If you want them stacking vertically why float either of them? Floating is usually for when you don't want things to stack. They'll sit at the left by default anyway, and block display makes them stack. Rather the adding more code you could lose some and get the same result.jrolson wrote: ↑Thu Nov 14, 2019 5:48 pm As for the logo issue, you could either make the logo longer which would push the description content down or in
theme/common.css
Find,Add afterCode: Select all
.logo { float: left; width: auto; padding: 10px 13px 5px 0; }
Code: Select all
.sitename { float: left; }
Code: Select all
.logo {
display: block;
padding: 10px 13px 5px 0;
}
Yes, it will take a little more time though since there's more changes.CheGuevara wrote: ↑Mon Jan 06, 2020 11:52 pm Hi,
Safe to assume that there will be a 3.3 update eventually? Thanks for your work!
Thanks!
Can you open your browser's dev tools and see if the cookie is being created? Are you using any mods that would conflict with the cookie/javascript required for the color switcher?Clipto wrote: ↑Tue Jan 07, 2020 9:25 pm It has been a while since I updated my forum, and thus Aero.
What an amazing improvements have been made, love it!
Lots of customization I've made, are now configurable, awesome to see how good the devs listen to the community.
I do have a question, I am running 3.2.9 with the latest Aero.
On ACP-Board settings-Boardstyle:
Default style: aero
Guest style: aero
Override user style: Yes
In /phpBB3/styles/aero/template/config.html:
<!-- DEFINE $A_DEFAULT_COLOR = 'pink' -->
<!-- DEFINE $A_COLOR_SWITCHER = '1' -->
But somehow in none of my browsers I am able to change colors.
I do see the colorpicker, it looks as it links only to #
I've cleared cooking on my browsers, purged cache in the ACP.
ALso I've played around with disabling the override setting in the ACP, but (as expected) this didn't do anything.
What am I missing here?
Looks like a jquery issue.
Code: Select all
<script src="{T_JQUERY_LINK}"></script>