xendisConnect - PixelExit.com [Deleted]

Shows good on mine, however it can happen if you've increased padding somewhere.

Nevertheless you can attempt to widen the account menu:

Code:
#AccountMenu {
width: 276px;
}

Is the size by default, try increasing it by like 5 pixels.
No good.

I kept raising it by 5 and finally decided to put something in there crazy like 576 and nothing changed. :(
 
Just fixed it by getting it to:

Code:
#AccountMenu {
width: 276px;
}

you may need an !important tag.
Nope, still no joy. I've been editing it in xendisConnect.css which is where you have it, but even with !important nothing changes.
 
Try putting that in css with the !important in extra.css for kicks, normally it should show here:

http://prntscr.com/1tvtdz

I have to step out possibly for the night... I'll check again later if I can or tomorrow morning.
 
None being used.

But I think I may have found something via Firebug.

Somewhere this is being added

PHP:
#AccountMenu .menuColumns a, #AccountMenu .menuColumns label {
width: 115px;
}

And when I removed it..... Everything is good. I just need to find where that is being added.
 
None being used.

But I think I may have found something via Firebug.

Somewhere this is being added

PHP:
#AccountMenu .menuColumns a, #AccountMenu .menuColumns label {
width: 115px;
}

And when I removed it..... Everything is good. I just need to find where that is being added.

If you want to email me your XML, I could take a look, something is definitely not right... or I'm missing the obvious.

russ at pixelexit.com
 

Installed on my localhost and works fine, and shows the new AccountMenu width:

devsite.webp

Are you using a child style or something, or possibly an edit through the TM/TMS
 
Installed on my localhost and works fine, and shows the new AccountMenu width:

Are you using a child style or something, or possibly an edit through the TM/TMS
Nope, no child style for this style.

I do have a few TMS entries, but nothing that should affect that. Will try to tweak through it, but if I can't resolve this, will likely just assume an unknown incompatibility with my setup, then uninstall.

Thanks for your help @Russ. Wish me luck.
 
Somethings definitely up, because your moderator bar isn't showing the right color either

soc1.webp soc2.webp


It's almost as if extra.css was modified through a TM/TMS and isn't calling the <xen:include template="xendisConnect.css" />
 
Somethings definitely up, because your moderator bar isn't showing the right color either

View attachment 57639 View attachment 57640


It's almost as if extra.css was modified through a TM/TMS and isn't calling the <xen:include template="xendisConnect.css" />
extra.css is indeed being feed through the TMS. This is standard for my desired setup because I use the same code in all my styles for a universal standards that I apply to all my styles.... ie... Rather than mess with each style individually, I use the TMS as designed to apply my code across the board.

It worked just fine in the version before this though.

This is what is inside my extra.css

PHP:
/* mood Responsive */
@media (max-width:@maxResponsiveNarrowWidth)
{
.userMood {display:none;}
}
/* END - mood Responsive */

/* right side logout on mod bar */
#moderatorBar .LogOut
{
float: right;
}
/* END right side logout on mod bar */

/* Hover effect logo and avatars */
#logo:hover {
opacity: 0.5;
transition-duration: 0.5s;
}

.avatar img:hover{
opacity: 0.5;
transition-duration: 0.5s;
}
/* END Hover effect logo and avatars */

/* Font color zoom out on hover */
.redactor_color_link:hover {
  -webkit-transition: all 0.2s ease;
  -moz-transition: all 0.2s ease;
  -ms-transition: all 0.2s ease;
  -o-transition: all 0.2s ease;
  transition: all 0.2s ease;
  transform: scale(2,2);
  -ms-transform: scale(2,2); /* IE 9 */
  -webkit-transform: scale(2,2); /* Safari and Chrome */}
/* END - Font color zoom out on hover */

/* SIGN UP BOX */
@-webkit-keyframes redPulse {
from { background-color: #bc330d; -webkit-box-shadow: 0 0 9px #333; }
  50% { background-color: #e33100; -webkit-box-shadow: 0 0 18px #e33100; }
  to { background-color: #bc330d; -webkit-box-shadow: 0 0 9px #333; }
  }
@-moz-keyframes redPulse {
from { background-color: #bc330d; -moz-box-shadow: 0 0 9px #333; }
  50% { background-color: #e33100; -moz-box-shadow: 0 0 18px #e33100; }
  to { background-color: #bc330d; -moz-box-shadow: 0 0 9px #333; }
  }
@-o-keyframes redPulse {
from { background-color: #bc330d; -o-box-shadow: 0 0 9px #333; }
  50% { background-color: #e33100; -o-box-shadow: 0 0 18px #e33100; }
  to { background-color: #bc330d; -o-box-shadow: 0 0 9px #333; }
  }
@keyframes redPulse {
from { background-color: #bc330d; box-shadow: 0 0 9px #333; }
  50% { background-color: #e33100; box-shadow: 0 0 18px #e33100; }
  to { background-color: #bc330d; box-shadow: 0 0 9px #333; }
  }
#SignupButton {
border: none !important;
background: transparent !important;
}
#SignupButton .inner {
-webkit-animation-name: redPulse;
-webkit-animation-duration: 2s;
-webkit-animation-iteration-count: infinite;
-moz-animation-name: redPulse;
-moz-animation-duration: 2s;
-moz-animation-iteration-count: infinite;
-o-animation-name: redPulse;
-o-animation-duration: 2s;
-o-animation-iteration-count: infinite;
animation-name: redPulse;
animation-duration: 2s;
animation-iteration-count: infinite;
background: none repeat scroll 0% 0% #750606 !important;
}
#SignupButton:hover .inner {
  background: #e33100 !important;
}
/* END SIGN UP BUTTON */

/* Highlight sticky threads */
.discussionListItem.visible.sticky,
.discussionListItem.visible.sticky .posterAvatar,
.discussionListItem.visible.sticky .stats {
background: @inlineMod;
font-style: italic;
}
/* END Highlight sticky threads */

/* Notice alert icon */
.navTabs .inbox .itemCount {
  background: url("@imagePath/xenforo/icons/alert_inbox.png") no-repeat scroll center transparent;
  line-height: 13px;
  box-shadow: none;
  height: 22px;
  min-width: 25px;
  color: #4c4c4c;
  top: -13px;}
.navTabs .inbox .itemCount .arrow { border-width: 0; }
/* END Notice alert icon */

/* Hide BB Code for sig photos */
.signature .bbCodeBlock,
.signature .bbCodeImage
{
  display: none !important;
}
/* END Hide BB Code for sig photos */

/* Hide members online sidebar */
.sidebar .membersOnline {
  display: none;
}
/* END Hide members online sidebar */

/* Hide staff online sidebar */
.sidebar .staffOnline {
  display: none;
}
/* END Hide staff online sidebar */

/* Hide forum stats */
#boardStats
{
  display: none;
}
/* END hide forum stats */

/* Add heart next to like */
.LikeText:before {
content: "\\2665 \\0020";
color: #FF0000;
font-size: 1.5em;
margin: 0 0 0 2px;
}
/* END Add heart next to like */

/* More room in smilie menu for more smilies */
.xenForoSkin .mceSmiliesMenu div {
  width: 330px !important;
}

/* END More room in smilie menu for more smilies */

/* Highlight deleted threada */
.discussionList .discussionListItem.deleted {
  background-color: #f7caca!important;
  border: 1px solid #d88585 !important;
}
.discussionList .discussionListItem.deleted .posterAvatar {
  background-color: #f7caca !important;
}
.discussionListItem.deleted .title {
  color: #881111;
}
/* END Highlight deleted threada */

/*Mood chooser overlay bigger*/
.chooserColumns.threeColumns li {
  width: 19.4% !important;
}
.moodChooser li {
  width: 19.4% !important;
}
.moodChooser ol {
  height: 340px !important;
}
/* END Mood chooser overlay bigger */

/* New indicator in conversations */
.conversation_list .discussionListItem.unread .title:after {
background-color: #BE4F4F;
border: 1px solid #902B2B;
content: "NEW";
color: white;
border-radius: 2px;
margin-left: 5px;
padding: 1px 5px;
font-size: 8px; }
/* END New indicator in conversations */

/* remove the LATEST text and replaces with icon */
.node .nodeLastPost .lastThreadTitle:before {
  content: "";
  background: url("@imagePath/xenforo/icons/latestpost-icon.png") no-repeat center transparent;
  width: 10px;
  height: 10px;
  padding-left: 12px; }
.node .nodeLastPost .lastThreadTitle span {display: none;}
/* END remove the LATEST text and replaces with icon */


/* adds link icon */
.message .messageText a {
  color: #7BA455;
  padding-left: 18px;
  background: url("@imagePath/xenforo/gradients/link-icon.png") no-repeat scroll left transparent;
}
.message .messageText a:hover {
  color: red;
  background: url("@imagePath/xenforo/gradients/link-icon.png") no-repeat scroll left transparent;
  box-shadow: none !important;
  -moz-transition: all 0.3s ease-in-out 0s;
  -o-transition: all 0.3s ease-in-out 0s;
  -webkit-transition: all 0.3s ease-in-out 0s;
  opacity: 0.5;
}
.bbCodeQuote a, .bbCodeQuote a:hover
{
  @property "baseHtml signature ugc";
  padding-left: 5px !important;
  background: none transparent !important;
  @property "/baseHtml signature ugc";
}
/* END adds link icon */

#waindigoCopyrightNotice { display: none; }
 
FIXED :)

@Russ was onto something ;)

I added this into the extra.css for the TMS.
PHP:
<xen:include template="xendisConnect.css" />
But I admit I do not know why it was not being applied in the first place

Both @Mike and @Chris Deeming claim that doing this would not replace extra.css, but amend it (which is my desired & preferred method). Bug?
 

Attachments

  • Screenshot from 2013-09-28 14:09:36.webp
    Screenshot from 2013-09-28 14:09:36.webp
    51.5 KB · Views: 10
@Russ

You've been very helpful and I suspect my needs have been a little demanding. I would like to soon purchase the branding removal as away to help fund the on going development (general up keep) of this style.

I'm assuming the only difference between the two is the right to revert the footer template, correct?
 
@Russ

You've been very helpful and I suspect my needs have been a little demanding. I would like to soon purchase the branding removal as away to help fund the on going development (general up keep) of this style.

I'm assuming the only difference between the two is the right to revert the footer template, correct?

Thanks, and that's it yep :)
 
Top Bottom