Ferdinand
Well-known member
Yes, however it also happens on register page only with a colour fill instead of transparent.Are you using login as visitor tab?
Yes, however it also happens on register page only with a colour fill instead of transparent.Are you using login as visitor tab?
As you'll see in the first post, I am complaining about this very issue. In the next version we are building a setting to remove all icons from the sidebar.This works for the widget framework, but my sidebar block (added w/ @borbole's Unlimited Custom Sidebar Blocks) doesn't appear to have a unique class. (http://stratics.com/community/ > donations sidebar block)
Are you using the 1.3 version? This was fixed in the 1.3.0.0 version.I've just noticed that on the user accounts pages the navigation link text doesn't remain blue.
![]()
What would I need to do to correct this?
Great updating fixed this. Thank you.Are you using the 1.3 version? This was fixed in the 1.3.0.0 version.
LOL i try to register and buy themes, they ban my IP and clasified my email like spam, after that send him email to fix that and they give me on my request nick name and pass, still cannot login to site@Audentio - I cant download this. I've updated the license with my domain details and the license is active. When i click the zip file i just get an error which says:-
Mike will sort this for you, dont worry.LOL i try to register and buy themes, they ban my IP and clasified my email like spam, after that send him email to fix that and they give me on my request nick name and pass, still cannot login to site![]()
How do you reduce the space in the footer?
LOL i try to register and buy themes, they ban my IP and clasified my email like spam, after that send him email to fix that and they give me on my request nick name and pass, still cannot login to site![]()
What space?
For specific support please create a ticket. I don't have everyone's URL's memorized.The space highlighted red would be a good start, there's a lot of empty space/padding in the footer.
![]()
ul.uix_socialMediaLinks {margin-bottom: 0;}
.footerLegal .pageContent {padding: 0;}
Thanks, this occurs on all the templates across all ui.x sites. So it should be a global thing. My footer css is:For specific support please create a ticket. I don't have everyone's URL's memorized.
But generally speaking here is some code that might help:
Code:ul.uix_socialMediaLinks {margin-bottom: 0;} .footerLegal .pageContent {padding: 0;}
.footer .pageContent
{
@property "footer";
font-size: @uix_globalFontSize;
background-color: @primaryLightest;
padding-right: @uix_gutterWidthSmall;
padding-left: @uix_gutterWidthSmall;
@uix_primaryBorder.border;
zoom: 1;
line-height: @uix_footerHeight;
min-height: 20px;
height: @uix_footerHeight;
@property "/footer";
}
.footer a,
.footer a:visited
{
@property "footerLink";
display: block;
@property "/footerLink";
}
.footer a:hover,
.footer a:active
{
@property "footerLinkHover";
color: @uix_primaryColor;
@property "/footerLinkHover";
}
.footer .choosers
{
@property "footerLeftBlock";
padding-left: 5px;
float: left;
overflow: hidden;
zoom: 1;
text-align: left;
@property "/footerLeftBlock";
}
.footer .choosers dt
{
display: none;
}
.footer .choosers dd
{
float: left;
<xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if>
}
.footerLinks
{
@property "footerRightBlock";
padding-right: 5px;
float: right;
zoom: 1;
@property "/footerRightBlock";
}
.footerLinks li
{
float: left;
<xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if>
}
.footerLinks a.globalFeed
{
width: 14px;
height: 5px;
display: block;
text-indent: -9999px;
white-space: nowrap;
background: url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -112px -16px;
padding: 0;
margin: 2px;
}
.footerLegal .pageContent
{
font-size: 11px;
overflow: hidden; zoom: 1;
padding: 5px 5px 5px;
text-align: center;
}
#copyright
{
color: @dimmedTextColor;
float: left;
}
#legal
{
float: right;
}
#legal li
{
float: left;
<xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if>
margin-left: 10px;
}
<xen:if is="@enableResponsive">
@media (max-width:@maxResponsiveMediumWidth)
{
.Responsive .footerLinks a.globalFeed,
.Responsive .footerLinks a.topLink,
.Responsive .footerLinks a.homeLink
{
display: none;
}
.Responsive .footerLegal .debugInfo
{
clear: both;
}
}
@media (max-width:@maxResponsiveNarrowWidth)
{
.Responsive #copyright span
{
display: none;
}
}
</xen:if>
I would add this to EXTRA.css not footer.css, the code I gave you.Thanks, this occurs on all the templates across all ui.x sites. So it should be a global thing. My footer css is:
Code:.footer .pageContent { @property "footer"; font-size: @uix_globalFontSize; background-color: @primaryLightest; padding-right: @uix_gutterWidthSmall; padding-left: @uix_gutterWidthSmall; @uix_primaryBorder.border; zoom: 1; line-height: @uix_footerHeight; min-height: 20px; height: @uix_footerHeight; @property "/footer"; } .footer a, .footer a:visited { @property "footerLink"; display: block; @property "/footerLink"; } .footer a:hover, .footer a:active { @property "footerLinkHover"; color: @uix_primaryColor; @property "/footerLinkHover"; } .footer .choosers { @property "footerLeftBlock"; padding-left: 5px; float: left; overflow: hidden; zoom: 1; text-align: left; @property "/footerLeftBlock"; } .footer .choosers dt { display: none; } .footer .choosers dd { float: left; <xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if> } .footerLinks { @property "footerRightBlock"; padding-right: 5px; float: right; zoom: 1; @property "/footerRightBlock"; } .footerLinks li { float: left; <xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if> } .footerLinks a.globalFeed { width: 14px; height: 5px; display: block; text-indent: -9999px; white-space: nowrap; background: url('@imagePath/xenforo/xenforo-ui-sprite.png') no-repeat -112px -16px; padding: 0; margin: 2px; } .footerLegal .pageContent { font-size: 11px; overflow: hidden; zoom: 1; padding: 5px 5px 5px; text-align: center; } #copyright { color: @dimmedTextColor; float: left; } #legal { float: right; } #legal li { float: left; <xen:if is="{$pageIsRtl}">*display: inline; *float: none; *zoom: 1;</xen:if> margin-left: 10px; } <xen:if is="@enableResponsive"> @media (max-width:@maxResponsiveMediumWidth) { .Responsive .footerLinks a.globalFeed, .Responsive .footerLinks a.topLink, .Responsive .footerLinks a.homeLink { display: none; } .Responsive .footerLegal .debugInfo { clear: both; } } @media (max-width:@maxResponsiveNarrowWidth) { .Responsive #copyright span { display: none; } } </xen:if>
Thanks, it still hasn't really changed much. I'm wondering if it's google analytics or cometchat however it is very visible on the demo site too.I would add this to EXTRA.css not footer.css, the code I gave you.
.node_4 .categoryStrip, .node_4 .forumNodeInfo.unread .nodeIcon, .node_4 .categoryForumNodeInfo.unread .nodeIcon {
background-color: #00A0D4;
}
.node_4 .unread .nodeText .nodeTitle a {color: #00A0D4;}
.node_6 .categoryStrip, .node_6 .forumNodeInfo.unread .nodeIcon, .node_6 .categoryForumNodeInfo.unread .nodeIcon {
background-color: #7B3E92;
}
.node_6 .unread .nodeText .nodeTitle a {color: #7B3E92;}
.node_5 .categoryStrip, .node_5 .forumNodeInfo.unread .nodeIcon, .node_5 .categoryForumNodeInfo.unread .nodeIcon {
background-color: #F32619;
}
.node_5 .unread .nodeText .nodeTitle a {color: #F32619;}
Hey all,
This update includes necessary functionality for the all new, recoded Drift that will be released right after this update.
-- A new page style (wrapped style, can be used instead of covered style)
-- By default, all our themes will be 1170px as opposed to the dated 960px standard. Full fluid is still as always supported and easily changeable
-- Userbanners had the gradient removed and padding applied for ease in readability
-- Gradient removed on tabs -- no more gradients on UI.X...
We use essential cookies to make this site work, and optional cookies to enhance your experience.