jgoldbloom
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Panoramic] Child theme not inheriting most customize settingsBTW, to those admins with same issue prior to support response here (intended only for local development – backup dev first as always, not live site during the fix), install/activate one of the front end theme switcher plugins like MDC Theme Switcher for example. Then setup another admin account and login with that in a separate browser and switch that one to the parent theme for copying settings to the admin account with child them activated. Deactivate switcher if not needed, test, backup live, publish dev to live, done.
FYI – a safe/easier way than exporting/importing DB content and while working only on your dev site, worked for me.
Forum: Plugins
In reply to: [Asgaros Forum] Forum stats not showing in mobile viewAdjusted, thanks.
I take it by setting the style to display none (with !important no less) and what I saw when enabled that you’re still developing it’s responsiveness. Keep at it, please, stats are a nice feature plus folks using the related hooks would appreciate it as well, I think.
For those wondering here’s a suggestion on how enable and very, very basic customize mobile stats for responsive display:
In skin/mobile.css change default style to:
#af-wrapper #statistics {
display: inline-block !important;
}Then add:
#af-wrapper #statistics .statistics-element {
width: 20%;
display: inline-block;
border-right: none;
margin: 12px 0 12px 0;
}Note: In my case I actually used my theme’s additional CSS for the first style then used my existing theme’s additional/custom JS where I have other custom mobile detection code/styling/breakpoint in place, all to avoid hacking the plugin code so upgrades easier.
I ended up with this after adding a few styles beyond the above to format mobile stats for my liking, noting the above CSS is just a starting point: