Invision Community 4: SEO, prepare for v5 and dormant account notifications Matt November 11, 2024Nov 11
July 31, 20186 yr On 7/26/2018 at 11:14 AM, TAMAN said: Topic background? its in the Topic view tab under the same name ? Yes. P.S. only 2 templates modified in this theme i would say %98 the theme will always work with latest ips versions ? and if it is required to update i usually update themes the same day as the new ips version comes ? Thank you.
July 31, 20186 yr Author Just now, Paul Play To Enjoy said: How do I link the slider button to a specific page? <a class="ta_sliderButton" href="PASTE YOUR LINK HERE">Buy now<i class="fa fa-arrow-right" aria-hidden="true"></i></a> Just now, Paul Play To Enjoy said: Great theme, I love it. Is there an easy way to check which colours are for which setting? I know sometimes I can use inspect but doesn't always work. If not I can see me asking A LOT of questions The setting title sometimes helps as well if not then play around on localhost its easy ?
August 1, 20186 yr Is there a way to increase the gap at the top so I can use a larger image? Also, is there a way to choose a separate logo for mobile? It looks a bit blank on mobile skin. I'd like to make a graphic to fill this screen below, but then it would look strange on the above image (desktop view). Maybe you could add a separate option for mobile logo? Finally do you know the sizes for these areas? No problem if not, I will just use trial and error. Thanks
August 1, 20186 yr Author Just now, Paul Play To Enjoy said: Is there a way to increase the gap at the top so I can use a larger image? with custom.css .ta_Header { margin-top: 85px; } Just now, Paul Play To Enjoy said: Also, is there a way to choose a separate logo for mobile? It looks a bit blank on mobile skin. I'd like to make a graphic to fill this screen below, but then it would look strange on the above image (desktop view). with custom.css this hides the actual logo and uses the custom image link as a background image, this is the only solution i can provide @media screen and (max-width: 979px){ .ta_Logo { background-image: url(IMAGE LINK); /*paste your image link here*/ background-position: 50% 50%; background-size: cover; } .ta_Logo #elLogo img { opacity: 0; } } Just now, Paul Play To Enjoy said: Maybe you could add a separate option for mobile logo? Cant do, sorry ? Edited August 1, 20186 yr by TAMAN
August 2, 20186 yr 23 hours ago, Paul Play To Enjoy said: Please can you help me with changing the colour of the background behind the logo? I've tried so many, can't seem to change it. Also is there a way to disable the body image for mobile? It doesn't work well at all on mobile, even with a very low res image
August 2, 20186 yr Author Just now, Paul Play To Enjoy said: Please can you help me with changing the colour of the background behind the logo? I've tried so many, can't seem to change it. Also is there a way to disable the body image for mobile? It doesn't work well at all on mobile, even with a very low res image Body background image doesnt show on mobile version of the theme its normal @media screen and (max-width: 979px){ body.ipsApp.ipsApp_front:before{display:none} /*hide body bg image*/ .ipsApp.ipsApp_front #ipsLayout_header header { background-color: #404052; /*logo background*/ } }
August 3, 20186 yr @media screen and (max-width: 979px){ body.ipsApp.ipsApp_front:before{display:none} /*hide body bg image*/ .ipsApp.ipsApp_front #ipsLayout_header header { background-color: #404052; /*logo background*/ } } Could you possibly guide me through entering these commands? This is the screen I start from yes? Also on mobile, inside my football a, the edge of the screen is distorted, like below Not sure if this is your theme or the football app. Pretty sure it wasn't there before
August 3, 20186 yr Author Just now, Paul Play To Enjoy said: Could you possibly guide me through entering these commands? This is the screen I start from yes? Just now, Paul Play To Enjoy said: Also on mobile, inside my football a, the edge of the screen is distorted, like below Not sure if this is your theme or the football app. Pretty sure it wasn't there before Not related to dreadnought theme, try to report to whatever the application is you are using ? Also, its good to test the issues on default IPS theme to check if the problem is on my theme or all themes
August 3, 20186 yr 1 hour ago, TAMAN said: Not related to dreadnought theme, try to report to whatever the application is you are using ? Also, its good to test the issues on default IPS theme to check if the problem is on my theme or all themes Thank you again
August 5, 20186 yr Hi Taman, Love your work on this theme. After searching this thread for about 15 minutes I'm having difficulty finding an answer to the issue I'm having. I have a front page from pages that has a slider, but I want it hidden on every other page that I have. Is there a way this is possible? I'm seeing there's only a way to exclude pages but this also removes it from the front page. Please advise. Thanks!
August 5, 20186 yr Author Just now, Diplomunion said: Hi Taman, Love your work on this theme. After searching this thread for about 15 minutes I'm having difficulty finding an answer to the issue I'm having. I have a front page from pages that has a slider, but I want it hidden on every other page that I have. Is there a way this is possible? I'm seeing there's only a way to exclude pages but this also removes it from the front page. Please advise. Thanks! Hello, Sorry, Its not possible to exclude or show it on only one "Pages" page.
August 6, 20186 yr 3 hours ago, TAMAN said: Hello, Sorry, Its not possible to exclude or show it on only one "Pages" page. Hi, Thank you for the prompt response. Is there a workaround you'd recommend? Should I use a different "page" as my front page and save pages for areas of the website I don't want to have the slider on? Thanks again.
August 6, 20186 yr Author Just now, Diplomunion said: Hi, Thank you for the prompt response. Is there a workaround you'd recommend? Should I use a different "page" as my front page and save pages for areas of the website I don't want to have the slider on? Thanks again. I can only provide css solution To hide the slider from all other pages you would need to create a CSS template in pages app ACP > Pages > Templates > New > Add CSS file after creating the css file, you can open it on the same page. add this line of css in the css file you created and save it .ta_themeSlider {display:none!important} after that, you need to include this css file in all the pages that you DONT want to show the slider on. ACP > Pages > Pages For example you have a page named articles, edit it and go to Page Includes tab to select the css file you created Edited August 6, 20186 yr by TAMAN
August 6, 20186 yr 1 hour ago, TAMAN said: I can only provide css solution To hide the slider from all other pages you would need to create a CSS template in pages app ACP > Pages > Templates > New > Add CSS file after creating the css file, you can open it on the same page. add this line of css in the css file you created and save it .ta_themeSlider {display:none!important} after that, you need to include this css file in all the pages that you DONT want to show the slider on. ACP > Pages > Pages For example you have a page named articles, edit it and go to Page Includes tab to select the css file you created Thank you so much Taman I'll try this when I get home.
August 6, 20186 yr Author Just now, Diplomunion said: Thank you so much Taman I'll try this when I get home. You're welcome. Thank you for your kind review! ? Let me know if i can help on anything else
August 6, 20186 yr On 6/8/2018 at 6:42 PM, TAMAN said: Hello, 1. Do you mean the default forum icons? if so it can be done with a custom css, i can provide help on that. Hi Taman, I was wondering if you could help with this. I help run a gaming-themed community and I wanted to change the forum icons to something more gamer-themed for each forum board on the main forum menu. How is this possible? Thanks Edited August 6, 20186 yr by Diplomunion
August 6, 20186 yr Author Just now, Diplomunion said: Hi Taman, I was wondering if you could help with this. I help run a gaming-themed community and I wanted to change the forum icons to something more gamer-themed for each forum board on the main forum menu. How is this possible? Thanks Hi, You can do by editing the forum in ACP and then upload your custom icons ? the css part is only good if you want to change the default icon all at once to something else from fontawesome icons
August 6, 20186 yr 4 minutes ago, TAMAN said: Hi, You can do by editing the forum in ACP and then upload your custom icons ? the css part is only good if you want to change the default icon all at once to something else from fontawesome icons Sorry Taman, I'm having trouble finding the area in ACP where I can upload custom icons. Could I trouble you to be a little more specific? Is there a specific page in ACP that I need to go to because I can't find it. Thanks!
August 6, 20186 yr Author Just now, Diplomunion said: Sorry Taman, I'm having trouble finding the area in ACP where I can upload custom icons. Could I trouble you to be a little more specific? Is there a specific page in ACP that I need to go to because I can't find it. Thanks! ACP > Forums Edit the forum you want to upload the icon ?
August 6, 20186 yr 3 minutes ago, TAMAN said: ACP > Forums Edit the forum you want to upload the icon ? I feel silly haha. I was looking at the parent forum and not the child forums. Thank you once again.
August 11, 20186 yr On 8/8/2018 at 7:08 PM, Brian Bielinski said: I'm not able to get the slider image to show up at all. Any idea why ? I'm having the same issue as well. All that appears is a blank slider. Its weird b/c it was working before. Edited August 11, 20186 yr by Diplomunion
August 11, 20186 yr Author On 8/9/2018 at 2:08 AM, Brian Bielinski said: I'm not able to get the slider image to show up at all. Any idea why ? Just now, Diplomunion said: I'm having the same issue as well. All that appears is a blank slider. Its weird b/c it was working before. Works fine here Please check the slider permissions Edited August 11, 20186 yr by TAMAN
August 13, 20186 yr On 8/11/2018 at 4:39 PM, TAMAN said: Works fine here Please check the slider permissions Permissions were fine but I reinstalled the entire theme and its working again.
August 13, 20186 yr Author Just now, Diplomunion said: Permissions were fine but I reinstalled the entire theme and its working again. mmm, could have been due to customization's! like editing resources, templates..., css etc if you have modified! anyway, i'm glad it works now. let me know if it happens again ?