Invision Community 5: A video walkthrough creating a custom theme and homepage By Matt Thursday at 04:02 PM
SardiniaNET Posted October 16, 2020 Posted October 16, 2020 13 hours ago, TAMAN said: to fix the userbar not showing from mobile version please add the below codes in custom.css  Here? If I paste your code here the theme crash..
TAMAN Posted October 17, 2020 Author Posted October 17, 2020 23 hours ago, SardiniaNET said:  Here? Yes  23 hours ago, SardiniaNET said: If I paste your code here the theme crash..  i dont know why would this code cause crash but try to paste the code above all other codes if you have in custom.css like this  Â
FZ Posted October 17, 2020 Posted October 17, 2020 Sticky nav bar is still having issues after the update. If you set it to "fixed to top" all message pop-ups and tooltips are appearing underneath it - see screen grab. Also the announcement that used to float on top of the navigation now sits on the top of the page. It sticks underneath the navigation when scrolled, but not sure I like this if it is supposed to do that.Â
TAMAN Posted October 17, 2020 Author Posted October 17, 2020 2 hours ago, FZ said: Sticky nav bar is still having issues after the update. If you set it to "fixed to top" all message pop-ups and tooltips are appearing underneath it - see screen grab. Please add this to custom.css #ipsLayout_header {position: unset;top: auto;z-index: auto;}#ipsLayout_header.ta_fixedBar {position: sticky;top: 0;z-index: 999;} this will be fixed on the next update soon 🙂  Steph40 1
FZ Posted October 18, 2020 Posted October 18, 2020 @TAMANÂ that code has completely screwed up my theme. I removed it but it is still doing the same thing - completely messed up everything. I'm going to send you a PM now.Â
FZ Posted October 18, 2020 Posted October 18, 2020 (edited) Seriously tired of this now. I can't understand how a move from 4.4 to 4.5 can cause webmasters so much unnecessary stress. I don't have time to constantly fix these stuff ups, man! Edited October 18, 2020 by FZ
TAMAN Posted October 18, 2020 Author Posted October 18, 2020 2 hours ago, FZ said: I removed it but it is still doing the same thing - completely messed up everything. Its only css! not possible to break something with it! you can copy paste it inside custom.css and it will fix the navigation z-index issue you reported. if you remove it from custom.css, it should revert the style changes. if it doesn't, then something else is going on Â
FZ Posted October 18, 2020 Posted October 18, 2020 (edited) 4 minutes ago, TAMAN said: if it doesn't, then something else is going on I can report that something else is definitely going on, because that copy of the theme got completely screwed up when adding the code and nothing I could do would revert it back to where it was. I tried clearing Safari cache, I ran the support wizard and got that to clear cache too. When doing that there was a patch that IPS asked me to install because of something to do with CSS, which I duly did, but nothing will restore that copy of the theme back to where it was. As I said before - I am over this stuff. It is the very last time I take an IPS upgrade on good faith as being functional. Edited October 18, 2020 by FZ
Dknelson Posted October 25, 2020 Posted October 25, 2020 I'm a bit new to Invision but I don't see, in any of the marketplace stuff, what versions the items will work on. Â I am running the latest version, is this them good with it?
TAMAN Posted October 26, 2020 Author Posted October 26, 2020 6 hours ago, Dknelson said: I'm a bit new to Invision but I don't see, in any of the marketplace stuff, what versions the items will work on.  I am running the latest version, is this them good with it? Hello, What Items exactly? this theme works with latest ips versionÂ
SerialNoob Posted October 26, 2020 Posted October 26, 2020 I'm still using 4.4.10 How to download an update of behemoth?
TAMAN Posted October 26, 2020 Author Posted October 26, 2020 (edited) 4 hours ago, SerialNoob said: I'm still using 4.4.10 How to download an update of behemoth? you need to update your website to ips 4.5.x first and then go to marketplace in ACP to install/Update Magnum theme 🙂 Edited October 26, 2020 by TAMAN
SerialNoob Posted October 26, 2020 Posted October 26, 2020 13 minutes ago, TAMAN said: you need to update your website to ips 4.5.x first and then go to marketplace in ACP to install/Update Magnum theme 🙂 What if I don't want to update now?Â
TAMAN Posted October 26, 2020 Author Posted October 26, 2020 (edited) 6 minutes ago, SerialNoob said: What if I don't want to update now? you must update your website to ips 4.5.x first and then go to marketplace in ACP to install/Update Magnum theme otherwise you dont need to touch the theme if you dont want to update your website if you have issues with it i can help if you explain 🙂 Edited October 26, 2020 by TAMAN SerialNoob 1
FZ Posted October 27, 2020 Posted October 27, 2020 (edited) Have run the latest update and would like to thank you for fixing the floating bar announcement issue. 🙂 However, I am seeing that if I want to change the colour of the text in that bar using the Frontend Colors tab in theme settings, it doesn't work - just stays white. I need to make it black to stand out on the yellow colour I have chosen for the "warning" message background. Tried custom CSS and that isn't working either. .ipsMessage, .ipsAnnouncement { border-radius:var(--radius-1); position:relative; margin-bottom:var(--sp-3); color: #000; border:1px solid rgba(0, 0, 0, 0.1); box-shadow:inset rgba(255, 255, 255, 0.1) 0px 1px 0px; } Can you advise? Edited October 27, 2020 by FZ TAMAN 1
Davyc Posted October 27, 2020 Posted October 27, 2020 1 hour ago, FZ said: color: #000;  Add !important after - use: .ipsMessage, .ipsAnnouncement { border-radius:var(--radius-1); position:relative; margin-bottom:var(--sp-3); color: #000000 !important; border:1px solid rgba(0, 0, 0, 0.1); box-shadow:inset rgba(255, 255, 255, 0.1) 0px 1px 0px; } See if that works 🙂  TAMAN and FZ 1 1
FZ Posted October 27, 2020 Posted October 27, 2020 8 minutes ago, Davyc said: Add !important after - use: .ipsMessage, .ipsAnnouncement { border-radius:var(--radius-1); position:relative; margin-bottom:var(--sp-3); color: #000000 !important; border:1px solid rgba(0, 0, 0, 0.1); box-shadow:inset rgba(255, 255, 255, 0.1) 0px 1px 0px; } See if that works 🙂  Fantastic! Thank you. 🙂 Davyc 1
Dknelson Posted October 28, 2020 Posted October 28, 2020 (edited) OK, there are several color schemes to pick from. Â Some of my member like dark themes and some like light. Â If you install this theme, can the user pick which they want to use or does it have to be installed and configured multiple times for them to have a choice? Â Edited October 28, 2020 by Dknelson
Dknelson Posted October 29, 2020 Posted October 29, 2020 Just insalled this theme. Â How do I change the image in the slider? Â It shows trees now. Â I went to sliders and changed to an image there but it doesn't change.
TAMAN Posted October 29, 2020 Author Posted October 29, 2020 On 10/28/2020 at 12:03 PM, Dknelson said: OK, there are several color schemes to pick from.  Some of my member like dark themes and some like light.  If you install this theme, can the user pick which they want to use or does it have to be installed and configured multiple times for them to have a choice?  Its pre configured by default and you can edit on theme you needed to 🙂 5 minutes ago, Dknelson said: Just insalled this theme.  How do I change the image in the slider?  It shows trees now.  I went to sliders and changed to an image there but it doesn't change. You can change the slider images in the theme settings Slider tabÂ
Dknelson Posted October 29, 2020 Posted October 29, 2020 Tried that and the image didn't change on my computer. Â Checked on my phone and it did change. Â Â Now I can't get the theme to show up at all for some reason. Â I choose it from themes at the bottom of my forum but it stays on the default theme.
TAMAN Posted October 29, 2020 Author Posted October 29, 2020 2 minutes ago, Dknelson said: Now I can't get the theme to show up at all for some reason.  I choose it from themes at the bottom of my forum but it stays on the default theme. I dont know why would this be a theme issue check the theme permissions maybe! see if you have permissions to view the theme What IPS version are you using?   4 minutes ago, Dknelson said: Tried that and the image didn't change on my computer.  Checked on my phone and it did change.   If it shows on your phone but not on your computer then its probably caching issue try to check on another browser or clear caches 🙂Â
Dknelson Posted October 29, 2020 Posted October 29, 2020 I'm completely confused. Â Don't know what is going on. Â The picture in the slider did changer on the phone. Â On my computer, I've cleared the browser cache in Safari, tried Firefox, and even swapped to Windows 10 and tried Bing and it still shows the default pine trees. Â I don't understand it at all. Â
Dknelson Posted October 29, 2020 Posted October 29, 2020 (edited) OK...when I click on the moon and switch to "light" mode, then click on the little circular arrow at the bottom, that makes it brighter? Â I assume that is the function of that curled arrow. Â I like the brighter look but when I do that, the icons in in the tool bar disappear in the post editor. Â EDIT: Â Figured out where to change the color so it would show up. Â Edited October 29, 2020 by Dknelson TAMAN 1
Recommended Posts