Yeah same here,
Any fast addon to fix it? or some change @ code/css.. or in generally for all the fixes? using XF 1.2 beta5
Yeah same here,
Using commonsense, obviously some functions of the xenbase don't play well with a style as they're made for specific styles use, however...
Mini avatar doesn't lineup
Move ACP link doesn't remove it from mod bar, but does add it into account menu
Moderator navtab moves the tab to visitor tabs, but doesn't remove the moderator bar itself from view.
Using commonsense, obviously some functions of the xenbase don't play well with a style as they're made for specific styles use, however...
Mini avatar doesn't lineup
Move ACP link doesn't remove it from mod bar, but does add it into account menu
Moderator navtab moves the tab to visitor tabs, but doesn't remove the moderator bar itself from view.
Using commonsense, obviously some functions of the xenbase don't play well with a style as they're made for specific styles use, however...
Mini avatar doesn't lineup
Move ACP link doesn't remove it from mod bar, but does add it into account menu
Moderator navtab moves the tab to visitor tabs, but doesn't remove the moderator bar itself from view.
I know I tried to style the user navigation drop down area, went to search the template, wouldn't find it. Couldn't get anything to show up on it when I manually edited it with TM either. There are a few things in [XB] I don't quite understand. That is the reason I haven't done much styling on my site. Waiting on the update.
I have to say... there are some excellent ideas encompassed in this framework compared to others I've used for XF to date. That moderator bar shift into a visitorTab is excellent.
Yeah same here,
Any fast addon to fix it? or some change @ code/css.. or in generally for all the fixes? using XF 1.2 beta5
margin-right: -15px !important;
I'm noticing repetitive CSS in media queries, where you're entering the same thing at maxResponsiveMediumWidth and maxResponsiveNarrowWidth, when you only need enter at the location you want to target either above, or below, but not both.
@media (max-widthmaxResponsiveMediumWidth)
{
#footerlists
{
display: none;
}
p.expandFooter
{
display: block;
}
#advancefooter
{
text-align: center;
}
#advancefooter .section
{
float: none;
margin: 10px auto;
}
#footerleftarea
{
float: none;
width: auto;
}
#footerleftarea .flogo
{
}
.footercol
{
float: none;
margin: 0 auto;
}
}
@media (max-widthmaxResponsiveNarrowWidth)
{
#footerlists
{
display: none;
}
p.expandFooter
{
display: block;
}
#advancefooter
{
}
#advancefooter .section
{
float: none;
margin: 10px auto;
}
#footerleftarea
{
float: none;
width: auto;
}
#footerleftarea .flogo
{
}
.footercol
{
float: none;
margin: 0 auto;
}
}
You could remove that entire narrow width code, as it's all enabled at the medium width for narrow width viewing, as an example. Not sure how much you do this throughout...
You also might want to consider simply using this to get rid of that ugly footer gradient that you were covering with another footer gradient to hide:
.secondaryContent.footercol {
background: none;
}
It was being forced because of .secondaryContent class use. You can get rid of:
background: url("@imagePath/xenforo/images/flistsep.png") repeat-y scroll left top transparent;
From your footer block and then simply use the primary medium background color to correct the issue, without trying to cover one gradient with another, which you're currently doing.
Sorry... I'm just going through it and I get picky with styling issues so as to produce the minimalist output possible to achieve the aim.
You don't want to see my sprite, as I pretty much get the entire style + add ons into a single sprite, so readers only load one image for the entire style. Google love it, which is why I do it.
You also might want to consider simply using this to get rid of that ugly footer gradient that you were covering with another footer gradient to hide:
.secondaryContent.footercol {
background: none;
}
It was being forced because of .secondaryContent class use. You can get rid of:
background: url("@imagePath/xenforo/images/flistsep.png") repeat-y scroll left top transparent;
From your footer block and then simply use the primary medium background color to correct the issue, without trying to cover one gradient with another, which you're currently doing.
You might want to take a closer look at that, because you have an underlying gradient that has nothing to do with .footercol class, as it's being introduced into your footer due to .secondaryContent. It doesn't matter what you put in .footercol, that gradient is still present, thus being loaded. This is why I said, one is covering the other, being .footercol is loading after .secondaryContent and covering it.There is no gradient being "covered" it is simply specifying in more detail that .footercol is the target and overwriting (not covering) the secondaryContent. We used that there for the blocks to help be consistent with sidebar blocks.
You might want to take a closer look at that, because you have an underlying gradient that has nothing to do with .footercol class, as it's being introduced into your footer due to .secondaryContent. It doesn't matter what you put in .footercol, that gradient is still present, thus being loaded. This is why I said, one is covering the other, being .footercol is loading after .secondaryContent and covering it.
It worked, thanks!You can go to Style Properties -> Message Elements -> New Indicator (Outer)
Put this in misc:
Code:margin-right: -15px !important;
At the bottom of the rest of the code.
We use essential cookies to make this site work, and optional cookies to enhance your experience.