Responsive Design for XenForo 1.1 [Paid] [Deleted]

Looks like template modification was applied twice. Go to admin control panel -> styles -> template modifications, check counter for "navigation - Add menu button" template modification. If it is applied more than once, click Rebuild Templates button.
 
Purchased to test out

How does this handle Adsense? Currently we have a separate mobile theme so its not an issue but we'd need some way to control whether to display full or mobile ads.
 
You need to configure your ad code to display different ads for different resolutions.

You can modify Adsense code like this:
Code:
if ($(window).width() > 700)
{
  ad_format = 'full size';
}
else
{
  ad_format = 'small ads';
}
(I don't remember exact variable names, see your adsense code)
 
Yes. If you are having trouble setting it up, post Adsense code snippets for different ad versions and I'll help you adjust JavaScript.
 
All styles use margin for spacing on left of post content, that style uses padding instead. To fix it add this to responsive_extra.css
Code:
.message .messageInfo { padding-left: 10px !important; }
 
  • Like
Reactions: DRE
Are you experiencing same issue when you aren't logged in? I don't see that issue on your forum, so my guess is it is ether caused by menu that appears only to registered users or by moderator bar.
 
When logged in, so it's probably the moderator bar. Thanks! I'll figure it out later.
 
I disabled my 8thos Bar modification and removed everything from EXTRA.css out of curiosity and nothing has changed. Which probably means it's either my parent theme that's messed up or it's another modification interfering.
 
Inspect elements of moderator bar in desktop mode, see which one has white-space:nowrap and add rule for it with white-space:normal to responsive_extra.css

Or just this rule to responsive_extra.css and hope it matches item that's causing problem:
Code:
#moderatorBar, #moderatorBar div { white-space: normal !important; }
 
It's in dc_smileymanger.css

Changing the width effects the whole postbit.

Code:
.dc_smileymanager_stickContainer a {
    display: block;
    margin: -1px auto 0 auto;
    border: 1px solid #ccc;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    padding: 5px 0 2px 0;
    width: 200px;
    font-size: 11px;
    color: #666;
    outline: 0;
}
 
Even though disabling DC Smiley Manager fixes the postbit width, TinyMCE is still very very small, so that's telling me that there's something else going on.
 
I also have MarkitUp Xenforo Integration.

Anyway I've re-enabled all addons and created a new skin that is just the default xenforo installation and the editor is fine.

The editor is not fine in my other skins though so that's telling me it is a style issue with either one of my styles or custom TMS edits.
 
Back
Top Bottom