Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
January 5, 20223 yr it's maybe a bit complicated for us. I can't reproduce what you show in your demos. We would like to use your module to create a home page for our forum.
January 5, 20223 yr we advance a little. We wanted to change the color of the titles for the moment they are in black. Where can we change this color?
January 6, 20223 yr Author 13 hours ago, L00PING said: we advance a little. We wanted to change the color of the titles for the moment they are in black. Where can we change this color? Titles in listing or article page? also by this moment they are in black, do you mean before hover? for hover you can change color using plugin setting. Anyway for the standard color neither of those listing or article page have distinct color scheme, because inherit their colors from Theme settings. but if you just want to color change those specific sections, for listing add this in your Theme > Edit CSS and HTML > CSS > custom.css .legend_card_title { color: red; } For article page in same custom.css: .legend_newsTitle { color: red; } If you have multiple themes installed in your site, you need to repeat these changes for those theme's custom.css as well.
January 6, 20223 yr thank you for your explanations. but we wanted to change the color of the titles of the three highlighted news. because as you can see in the image below in black it is not very nice : and we don't have a frame around the blocks. Like on your demo we use the theme : ChameleonDark 4.6.8 your demo
January 7, 20223 yr Author 13 hours ago, L00PING said: thank you for your explanations. but we wanted to change the color of the titles of the three highlighted news. because as you can see in the image below in black it is not very nice : and we don't have a frame around the blocks. Like on your demo we use the theme : ChameleonDark 4.6.8 your demo Judging by screenshots, your custom theme have dark style so color scheme for this part is automatically dark as well. if you want to change that you can add this class in your theme's custom.css (same way as my last post) .legend_fptitle_card { color: red !important; } For the second part, custom theme seems have different padding for default layout container. changes to this part can effect other parts of your website, but you can use following class in theme's custom.css so it's effect be limited to this. .legend_bodyCsutomWidthFP > .ipsLayout_container, .legend_bodyCsutomWidthReset > .ipsLayout_container { padding: 0 15px; }
January 8, 20223 yr Author 17 hours ago, L00PING said: thank you very much for your help. everything works fine now Sure, glad to hear it 👍
January 10, 20223 yr Hello I still have a little problem. Why are some header images smaller than others? The page is online you could check at this address: https://swissstarships.org/forums/index.php?/home.html/
January 10, 20223 yr Author 1 hour ago, L00PING said: Hello I still have a little problem. Why are some header images smaller than others? The page is online you could check at this address: https://swissstarships.org/forums/index.php?/home.html/ Appears the effect comes from custom theme and I can't reproduce it in default theme. anyway use this class with the same guide as before, should fix the issue. .legend_title_effect { width: 100%; }
January 10, 20223 yr Author 1 minute ago, L00PING said: thank you very much, it works very well. Sure, happy to help 👍