Jump to content

DesignzShop

Members
  • Posts

    2,963
  • Joined

  • Last visited

  • Days Won

    6

Reputation Activity

  1. Thanks
    DesignzShop reacted to Rikki in 4.5 CSS Changes for developers & designers   
    It won't be any time soon, if ever - the {theme} tag is still used for non-color settings for example. It'd be preferred to use the CSS variable approach for consistency and potentially future compatibility with new features, but it isn't a huge deal right now.
    That said, converting them should be easy in most cases. We did our entire framework in a few steps using find/replace in a text editor.
  2. Like
    DesignzShop got a reaction from BomAle in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  3. Like
    DesignzShop got a reaction from evcom in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  4. Like
    DesignzShop got a reaction from Interferon in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  5. Like
    DesignzShop got a reaction from Ilya Hoilik in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  6. Like
    DesignzShop got a reaction from crmarks in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  7. Like
    DesignzShop got a reaction from Jim M in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  8. Like
    DesignzShop got a reaction from Andy Millne in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  9. Like
    DesignzShop got a reaction from DawPi in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  10. Like
    DesignzShop got a reaction from Miss_B in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  11. Like
    DesignzShop got a reaction from Matt in HOMERUN!   
    All I really got to say is IPB knocked this one out of the park. HOMERUN! I better add also I'm also really impressed with low bug count in betas. The dev team is organized better than ever.. It's taken some years to get everything on the track it is but I feel it was well worth it and well worth the wait. Should I be giving @Lindy some credit here?? If I do will @Matt pull the Lindy factor line on me? 🤣 This is really such a well rounded product now all the way around. Great awesome job IPB!
     
  12. Like
    DesignzShop reacted to Rikki in 4.5 CSS Changes for developers & designers   
    Bear in mind, you don't have to update styles in custom.css. But if you do want to use the new approach:
    All theme settings that are color fields will automatically be set up as CSS variables, so you don't need to do that yourself (the hex will automatically be converted to an rgb triplet too). So if your "mass_color_main" theme setting is a color field, the --theme-mass_color_main CSS variable will automatically exist. So in your first example, your updated code would be correct and you wouldn't need to do anything extra for that to work.
    For your second example, are you saying you'd have a theme setting that's just a plain text field? If so, that won't automatically be created as a CSS variable. You'd need to do that yourself, like so:
    :root {
        --your_custom_setting: {theme="your_custom_setting"};
    }
    You can then use that variable however you wish. In this second example, nothing is automatic, so you can name your CSS variable whatever you want.
  13. Like
    DesignzShop got a reaction from Abies in Please add Polls to pages   
    Please add the ability to add a poll to a pages record or by itself as a record. I run a news site, forums are not part of a local news site in general, but the ability to add a poll would be fantastic. Since the software is sold now by app basis, pages would be deserving of this ability imo.
    Thank You
  14. Like
    DesignzShop got a reaction from BomAle in Please add Polls to pages   
    Please add the ability to add a poll to a pages record or by itself as a record. I run a news site, forums are not part of a local news site in general, but the ability to add a poll would be fantastic. Since the software is sold now by app basis, pages would be deserving of this ability imo.
    Thank You
  15. Thanks
    DesignzShop reacted to Rikki in Please Make Ads Less Easily Blocked   
    I've logged an issue for this and we'll look at getting it changed for 4.5 🙂 
  16. Like
    DesignzShop got a reaction from Joel R in Everybody is choosing "Night Mode" nowadays....   
    There's a possibility some of you may have drank too much kool-aid here. @Charles is on to something!
    https://www.wired.com/story/do-you-need-dark-mode/
  17. Like
    DesignzShop reacted to Adriano Faria in Marketplace Reviews   
    Oh God, the user lied!! What now? The world is over.
    A question: is anyone forcing you to use THIS translation? No? Then simply unisntall it, pay someone else or do it yourself, since you don't want they delete it.
    You whining here will not make it auto translate the missing langs. Live with it, mate!
  18. Like
    DesignzShop got a reaction from The Old Man in Font awesome 5.0   
    <script defer src="https://use.fontawesome.com/releases/v5.0.0/js/all.js"></script> <script defer src="https://use.fontawesome.com/releases/v5.0.0/js/v4-shims.js"></script> When you do this some changes that take place are for example from what FA says the icons inherit text size and that is shown when adding the lines you added. So for example your usernav icons become small because they inherit the text size and also for example your check boxes icons like the checkmark itself gets very large. Obviously IPB will need to make adjustments to all these areas when moving into FA5.
    So yes, the code above works, but some areas will appear different from the original IPB design intention.
    I personally love FA and am positive IPB will upgrade us, question is when and I think there's more than enough time to add these to 4.3 possibly.. I say possibly here  
  19. Like
    DesignzShop reacted to Nathan Explosion in Large community? You have a problems with sitemap!   
    Has it been logged as a bug with support? If not, do so.....you can't rely solely on the Peer to Peer support forum as a way of reporting issues to the developers.
×
×
  • Create New...