Jump to content

Amy Pond

Clients
  • Posts

    172
  • Joined

  • Last visited

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Posts posted by Amy Pond

  1. 6 hours ago, shahed said:

    Glad that helped. about positive-light, this one is among many others are variables coming from IPS theme's root. there are not many options for them, but you can customize the same way in custom.css:

    :root {
    	--positive-light: #87af9e !important;
    }

     

    Excuse me, hopefully this will be my last question 😅

    I'd like to change the text color in chatbox when a user tags another one and for it to be different between the light and dark mode. Is it possible? Thank you again! 

     

  2. 3 hours ago, shahed said:

    Glad that helped. about positive-light, this one is among many others are variables coming from IPS theme's root. there are not many options for them, but you can customize the same way in custom.css:

    :root {
    	--positive-light: #87af9e !important;
    }

     

    Thank you again for your kind help!

  3. 10 hours ago, shahed said:

     

    Hello,

    Those CSS styles that i send for custom.css, need to be expand based on your need. in it's current form it works only for "body" element. you may notice there are three "body {...}" in those styles, so every other HTML elements in your theme that have it's own font sizes, still retain their styling. you can find HTML element's css class with your browser's "Inspect" ability. for example this:

    Could contain: Page, Text, File

     

    This part is one of the sections in your screenshot, that need different font-size in phone screen. it uses ".ipsType_normal"... and you can style it for font size by expanding previous code, like this:

    /* Phone */
    @media screen and (max-width: 767px) {
    	body {
    	  font-size: 10px;
    	}
    	.ipsType_normal {
    	  font-size: 10px !important;
    	}
    }

    As you can see i only made expand in Phone classes, so you can do this in Desktop/Tablet separately as well if needed. also you can use " !important" to prioritize the style you currently work. you can find other element's css classes just like this and try to give it custom styling this way.

    Thank you very much, now it works perfectly 🙂 

    I have another question: I'd like to change the "positive-light" color, but I don't find where to change it... Could you help me find it? Thank you again!

  4. On 3/2/2023 at 3:08 PM, shahed said:

     For this theme, some elements have font size setting for mobile device, namely Mobile Navigation. you can change main link sizes with different values to see changes in mobile screens. there is also IPS settings for each theme. you can find in Theme settings > Font Scale... but of course it's not always affect in mobile view.

    In my opinion the best way to handle this and target specific area, is using your theme's custom.css for some responsive designing. for example with this method you can change body text in desktop/tablet/phone if you add it in custom.css:

    /* Desktop */
    body {
      font-size: 14px;
    }
    
    /* Tablet */
    @media screen and (max-width: 977px) {
    	body {
    	  font-size: 12px;
    	}
    }
    
    /* Phone */
    @media screen and (max-width: 767px) {
    	body {
    	  font-size: 10px;
    	}
    }

     

    Hello,

    I'm using this settings:

    /**
     * This file is for your custom CSS.
     * This file is not modified or overwritten during upgrades
     */
    /* Desktop */
    body {
      font-size: 16px;
    }
    
    /* Tablet */
    @media screen and (max-width: 977px) {
    	body {
    	  font-size: 18px;
    	}
    }
    
    /* Phone */
    @media screen and (max-width: 767px) {
    	body {
    	  font-size: 18px;
    	}
    }

    but the text that I circled in the picture (text inside topics) doesn't change size and it remains always the same size.

    Could contain: Text, Page

    I hope to be understandable 😅

  5. 1 hour ago, Ryan Ashbrook said:

    Admin CP > Members. Click the Cog icon on the search bar. You can use this to search for members based on certain criteria. In this case, you would enter the information like so (note that only the second date field for Last activity is changed):

    Could contain: Page, Text, Computer Hardware, Electronics, Hardware, Monitor, Screen

    After you submit your search, there will be a bar at the top that will allow you to prune / delete all members found, or move them to a different group.

    Before performing any mass alteration on your site, please always ensure you take a backup just in case your search is too broad and accidentally prunes accounts that you did not want removed.

    Thank you very much!

  6. Just now, shahed said:

    For this theme, some elements have font size setting for mobile device, namely Mobile Navigation. you can change main link sizes with different values to see changes in mobile screens. there is also IPS settings for each theme. you can find in Theme settings > Font Scale... but of course it's not always affect in mobile view.

    In my opinion the best way to handle this and target specific area, is using your theme's custom.css for some responsive designing. for example with this method you can change body text in desktop/tablet/phone if you add it in custom.css:

    /* Desktop */
    body {
      font-size: 14px;
    }
    
    /* Tablet */
    @media screen and (max-width: 977px) {
    	body {
    	  font-size: 12px;
    	}
    }
    
    /* Phone */
    @media screen and (max-width: 767px) {
    	body {
    	  font-size: 10px;
    	}
    }

     

    Got it, thank you!

  7. Just now, Makoto said:

    I apologize for the inconvenience, this should be resolved now. If you still can't renew, try accessing the page again in about an hour or so and it should hopefully be working then.

    Thanks!

  8. 7 minutes ago, Adriano Faria said:

    He is currently in Members group (license expired). This disable purchases (and probably renewals?) in all resources.

    No, because yesterday I purchased upgrades regularly from the marketplace in the backend of my forum, including your own plugin 🙂

    I hope what I wrote is understandable...

  9. 3 minutes ago, Makoto said:

    Hello! The pricing structure hasn't changed in years. I try and keep the price as reasonable as I can for the time spent developing the application and maintaining it.

    Sorry, I’m afraid I misexpressed myself, I'm not not native English speaker 🥲

    What I mean is that when I go to the purchase page I see this: Could contain: Text, File

  10. Hello! Firstly, this theme is amazing 😄 

    I have some questions for you. 

    1. Is it possible to change hover text color in the header menu? 

    Could contain: Text, Page

     

    2. Is it possible to change topics color link? 

    Could contain: White Board

     

    3. Is it possible to change the color of background and text in chatbox when you are tagged? 

    Could contain: Text, Page

     

    4. How can I change the background of title tag in the post? 

    Could contain: Text

     

    Thanks a lot, sorry for my bad English 😞

     

×
×
  • Create New...