xendisConnect - PixelExit.com [Deleted]

Russ updated xendisConnect - pixelExit.com with a new update entry:

1.2 Beta 5 Compatibility

View attachment 51027


This is a minor update to the previous beta version, it fixes the responsiveness which changed between the betas


  • 1.2 Compatibility
  • PAGE_CONTAINER template updated
  • navigation template updated

If upgrading please make a backup of existing xendisConnect style


***NOTE*** This is considered a beta release of a style along with the beta version of XF. This will work on 1.2+, however it's very likely bugs will be found...

Read the rest of this update entry...
 
I believe there is only one small outdated template for 1.2 RC 1 and it doesn't Chang much so I'll probably hold off until 1.2 final to release an update. It currently works on 1.2 beta + so cosmetic fixes and the outdated template will be rolled out for 1.2 final
 
Nevermind this is fixed. How do I add a log out button on the top bar on the right?

Glad you fixed it, I'll look at it in a bit.

In regards to the logout link I'm not at my computer right now but you can look at navigation_visitor_tabs, the logout link was moved into the user panel dropdown so you can copy that link and put it in a new LI at the end of navigation_visitor_tabs, inside the UL list.
 
Glad you fixed it, I'll look at it in a bit.

In regards to the logout link I'm not at my computer right now but you can look at navigation_visitor_tabs, the logout link was moved into the user panel dropdown so you can copy that link and put it in a new LI at the end of navigation_visitor_tabs, inside the UL list.
Any way you can update this theme to have the footer and social links like some of your other ones? I would be willing to contribute to make this happen!
 
Any way you can update this theme to have the footer and social links like some of your other ones? I would be willing to contribute to make this happen!

To be honest we're working on revamping the footer as a whole, on that note sadly the footer will be specific to the framework.

However you can contact me if you'd like so we can work something out.
 
Seems to have a small issue with the "take likes to the next level" add-on

(see screen shot)
 

Attachments

  • Screenshot from 2013-08-13 19:03:43.webp
    Screenshot from 2013-08-13 19:03:43.webp
    79 KB · Views: 13
Seems to have a small issue with the "take likes to the next level" add-on

(see screen shot)

.message .likesSummary {
margin: 5px 10px !important;
}

This is causing it to mess up, is that something you added by chance, search for just the .message .likesSummary
 
.message .likesSummary {
margin: 5px 10px !important;
}

This is causing it to mess up, is that something you added by chance, search for just the .message .likesSummary
Nothing I added.

I did a search and the default style (unedited) has it in message.css


PHP:
  .message .likesSummary
   {
     @property "messageLikesSummary";
     padding: 5px;
     margin-top: 10px;
     border: 1px solid @primaryLighterStill;
     border-radius: 5px;
     @property "/messageLikesSummary";
   }

Your style matches this.


But your style has it in 1 more place xendisConnect.css

PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   margin: 5px 10px 5px 10px !important;
   border-style: dotted !important;
}
 
Nothing I added.

I did a search and the default style (unedited) has it in message.css


PHP:
  .message .likesSummary
   {
     @property "messageLikesSummary";
     padding: 5px;
     margin-top: 10px;
     border: 1px solid @primaryLighterStill;
     border-radius: 5px;
     @property "/messageLikesSummary";
   }

Your style matches this.


But your style has it in 1 more place xendisConnect.css

PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   margin: 5px 10px 5px 10px !important;
   border-style: dotted !important;
}


Hmmm, I need to move those into the style properties, I would remove that margin line from the xendisConnect.css template.
 
Hmmm, I need to move those into the style properties, I would remove that margin line from the xendisConnect.css template.
FIXED

xendisConnect.css


PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   margin: 5px 10px 5px 10px !important;
   border-style: dotted !important;
}

Removed

PHP:
   margin: 5px 10px 5px 10px !important;

So it looks like this now

PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   border-style: dotted !important;
}

Everything looks nice like this. See example here
http://www.sociallyuncensored.eu/forums/misc/style?style_id=36

I would not move those to the style properties in your next update. Just make that small edit and everything falls into place.
 
FIXED

xendisConnect.css


PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   margin: 5px 10px 5px 10px !important;
   border-style: dotted !important;
}

Removed

PHP:
   margin: 5px 10px 5px 10px !important;

So it looks like this now

PHP:
.message .likesSummary
{
   border-width: 1px 0px 0px 0px !important;
   background-color: transparent !important;
   padding: 5px 10px !important;
   border-radius: 0px !important;
   border-style: dotted !important;
}

Everything looks nice like this. See example here
http://www.sociallyuncensored.eu/forums/misc/style?style_id=36

I would not move those to the style properties in your next update. Just make that small edit and everything falls into place.


They actually belong in the style properties here: @property "messageLikesSummary";

It would just allow for less !important and less CSS loading :D
 
Top Bottom