Invision Community 4: SEO, prepare for v5 and dormant account notifications By Matt Monday at 02:04 PM
TAMAN Posted March 13, 2021 Author Posted March 13, 2021 (edited) 20 hours ago, kotaco said: EDIT: Figured it out. Had to go into designers mode and add some custom settings for the default. Im guessing those will get overwritten with updates, but at least I know how to do it now 🙂 You dont need to create extra theme settings for a custom color as it will cause you a headache later if you needed to reinstall the theme You can simply add another line of code in custom.css to setup the default color with targeting body tag except color schemes classes body:not(.taP_colorScheme1):not(.taP_colorScheme2):not(.taP_colorScheme3):not(.taP_colorScheme4):not(.taP_colorScheme5) .grpAdmin { --theme-grpAdmin: 0, 0, 255; /*<--- This is the default color in raw rgb*/; color: rgb(var(--theme-grpAdmin)); } basically, this will change the .grpAdmin color value but only if body tag has no classes like (taP_colorScheme1, taP_colorScheme2...) In your case you also do not need to use raw rgb color values in palette theme setting as its complicated to customize the colors. (Im only using raw rgb values in palette because ips uses almost all kinds of color with rgb) you can simply use HEX values in palette like --theme-grpAdmin: #fff; you will also need to remove the rgb tag in the color property color: var(--theme-grpAdmin); Edited March 13, 2021 by TAMAN kotaco 1
kotaco Posted March 14, 2021 Posted March 14, 2021 (edited) 23 hours ago, TAMAN said: You dont need to create extra theme settings for a custom color as it will cause you a headache later if you needed to reinstall the theme You can simply add another line of code in custom.css to setup the default color with targeting body tag except color schemes classes body:not(.taP_colorScheme1):not(.taP_colorScheme2):not(.taP_colorScheme3):not(.taP_colorScheme4):not(.taP_colorScheme5) .grpAdmin { --theme-grpAdmin: 0, 0, 255; /*<--- This is the default color in raw rgb*/; color: rgb(var(--theme-grpAdmin)); } basically, this will change the .grpAdmin color value but only if body tag has no classes like (taP_colorScheme1, taP_colorScheme2...) In your case you also do not need to use raw rgb color values in palette theme setting as its complicated to customize the colors. (Im only using raw rgb values in palette because ips uses almost all kinds of color with rgb) you can simply use HEX values in palette like --theme-grpAdmin: #fff; you will also need to remove the rgb tag in the color property color: var(--theme-grpAdmin); Thank you for the tip! That solution works great. Edited March 14, 2021 by kotaco
Iwooo Posted March 21, 2021 Posted March 21, 2021 Hi, my navbar seems broken on lower resolutions. How can I fix this?
TAMAN Posted March 21, 2021 Author Posted March 21, 2021 33 minutes ago, Iwooo said: Hi, my navbar seems broken on lower resolutions. How can I fix this? any link to check?
TAMAN Posted March 21, 2021 Author Posted March 21, 2021 4 minutes ago, Iwooo said: @TAMANhttps://make-cash.pl 40 minutes ago, Iwooo said: Hi, my navbar seems broken on lower resolutions. How can I fix this? Have you modified anything in the navbar? there are no issues like this on my side. the menus should automatically move into a "More" button on smaller screens you can also test it here on almost all themes https://ipskit.com/
Iwooo Posted March 21, 2021 Posted March 21, 2021 @TAMAN navBar doesn't seem to be edited. How can I check if it's default for sure? This is my custom.css
TAMAN Posted March 21, 2021 Author Posted March 21, 2021 6 minutes ago, Iwooo said: navBar doesn't seem to be edited. How can I check if it's default for sure? I think the problem is with a theme setting which relocates the javascript include this is in theme settings Custom tab you need to select JavaScript Include location to Inside the <head> Iwooo 1
Iwooo Posted March 21, 2021 Posted March 21, 2021 @TAMAN Thanks, that was the issue. Is there a way to change "more" to different text? 🙂
TAMAN Posted March 21, 2021 Author Posted March 21, 2021 19 minutes ago, Iwooo said: @TAMAN Thanks, that was the issue. Is there a way to change "more" to different text? 🙂 Sure Edit the language and search for this tag ta_themes_menu_more ACP > Language Iwooo 1
TAMAN Posted June 15, 2021 Author Posted June 15, 2021 27 minutes ago, EmaxDev said: Hi @TAMAN Is this theme going to be upgraded to 4.6? last time i checked there were no changes in templates so all works fine if you update your site there is a new version coming tho with many new changes hopefully in the following weeks Emaxo 1
Emaxo Posted June 23, 2021 Posted June 23, 2021 Hi @TAMAN I'm trying the theme with 4.6 and the profile/badges/achievements are all glitched
TAMAN Posted June 23, 2021 Author Posted June 23, 2021 1 hour ago, EmaxDev said: Hi @TAMAN I'm trying the theme with 4.6 and the profile/badges/achievements are all glitched I dont see any issues on my sides plus achievements is new nothing of that is modified by me to cause anything if you have modified templates then you will need to revert them back to default or update them for ips 4.6.x Emaxo 1
Emaxo Posted June 24, 2021 Posted June 24, 2021 You are right! I reinstalled the theme and now everything works fine. Thanks for the support 😄
TAMAN Posted June 24, 2021 Author Posted June 24, 2021 (edited) 33 minutes ago, EmaxDev said: You are right! I reinstalled the theme and now everything works fine. Thanks for the support 😄 No worries the only thing modified in this theme is 2 html templates that even ips is scared to modify them during updates 😅 so all good if you simply dont modify anything and use only custom.css for customization's Edited June 24, 2021 by TAMAN
GoGators Posted July 8, 2021 Posted July 8, 2021 Using the default theme, I am able to place the cursor on the pagination at the bottom of the "Videos" add-on, but... Using the Magnum theme, I must select the top or bottom margin of the pagination link. This only applies to the bottom pagination area and not the top. You can visit my site here and see what I am talking about.
TAMAN Posted July 9, 2021 Author Posted July 9, 2021 17 hours ago, GoGators said: Using the default theme, I am able to place the cursor on the pagination at the bottom of the "Videos" add-on, but... Using the Magnum theme, I must select the top or bottom margin of the pagination link. This only applies to the bottom pagination area and not the top. You can visit my site here and see what I am talking about. add this in custom.css to fix that body[data-pagemodule="videos"] .ipsPagination { margin-bottom: 22px !important;} GoGators 1
GoGators Posted July 9, 2021 Posted July 9, 2021 (edited) 10 minutes ago, TAMAN said: add this in custom.css to fix that body[data-pagemodule="videos"] .ipsPagination { margin-bottom: 22px !important;} @TAMAN That worked great Edited July 9, 2021 by GoGators
MikuruX Posted July 15, 2021 Posted July 15, 2021 Hiya Taman, got a really small question: Where could I find the option that changes the color of the text & status bar in the profile blip as shown in this pic: I'm trying to change it from the dark green color to whatever (mostly I'm going to change it to white) due to it being hard to see. I'm going through all the sections and changing the colors one by one but it's becoming time consuming now (or I'm just blind and overlooking it).
TAMAN Posted July 15, 2021 Author Posted July 15, 2021 8 minutes ago, Mikuru // X said: Hiya Taman, got a really small question: Where could I find the option that changes the color of the text & status bar in the profile blip as shown in this pic: I'm trying to change it from the dark green color to whatever (mostly I'm going to change it to white) due to it being hard to see. I'm going through all the sections and changing the colors one by one but it's becoming time consuming now (or I'm just blind and overlooking it). Hi, its connected with Light text color setting in Text tab
dunefreak Posted July 16, 2021 Posted July 16, 2021 Hey @TAMAN I'm trying to update my theme so I can update my Invision and it's giving me this. Is there another way to update?
TAMAN Posted July 16, 2021 Author Posted July 16, 2021 6 hours ago, dunefreak said: Hey @TAMAN I'm trying to update my theme so I can update my Invision and it's giving me this. Is there another way to update? Hi, Maybe your ips license is expired! You can't download/install from ips marketplace if the license is expired
Afrodude Posted July 16, 2021 Posted July 16, 2021 7 hours ago, TAMAN said: Maybe your ips license is expired! Whenever he has "+Clients" it means he license still active, but it's definitely IPS side issue. @dunefreak you must contact IPS staff to see the issue. TAMAN 1
Nathan Explosion Posted July 16, 2021 Posted July 16, 2021 7 hours ago, TAMAN said: Hi, Maybe your ips license is expired! You can't download/install from ips marketplace if the license is expired You also can't download if you haven't renewed the resource you are trying to download, which is most likely the issue here but IPS support can answer this so the affected user should do that. TAMAN 1
Recommended Posts