Jump to content

Davyc

Clients
  • Posts

    1,326
  • Joined

  • Days Won

    18

 Content Type 

Downloads

Release Notes

IPS4 Guides

IPS4 Developer Documentation

Invision Community Blog

Development Blog

Deprecation Tracker

Providers Directory

Forums

Events

Store

Gallery

Everything posted by Davyc

  1. I had a feeling it would - happy that you got it sorted though, and agree about the CSS files 😉
  2. You're getting an error on those entries so change 'none' to 0% or 0px and that should clear it 😉 I forgot to add, that you may find that your images might not display at all - so check to see what happens and if needs be add some width in there that's acceptable to you.
  3. I like the new search bar, however there is a small issue with it. It will default to searching whichever app is set as default rather than starting with everywhere. I first noticed this when I updated to 4.7.1 as I have my default app set as Pages because my home page is a Pages page and the search was defaulting to Pages. Now, I'm not currently using Pages for anything other than my home page, so anyone who does not notice this change and tries to search for something that is anywhere but on a Pages page, they will get a 'Not Found' message. I had to install @Adriano Faria remove pages from search app to allow people to search the site.
  4. The simplest of things are generally the last to be tried lol 🙂 Glad you got that sorted, if you want some CSS to correct the padding let me know and I'll be happy to help 😉
  5. There are some other padding issues going on as well. Can you say what theme you are using? Does the same issue appear on the default theme? For example your text should not be butted against the edge of the frame. There should be 'some' padding to move it away from the edge. This is either a theme issue or something is seriously wrong with the CSS files. I would check against an unmodified default theme.
  6. @Duken If this is only affecting the Pages app change the CSS to this: [data-pagemodule="pages"] .ipsType_richText p:not( [class] ) { margin-top: revert !important; margin-bottom: revert !important; } It's an unusual anomaly so it needs to be drilled down to precisely how to alleviate it. If it's still causing issues elsewhere then keep it in place and link me to where it is affecting other items and we can move on from there 🙂
  7. Add this to your custom CSS file and see if it works for you: .ipsType_richText p:not( [class] ) { margin-top: revert !important; margin-bottom: revert !important; } 🙂
  8. A most welcome, useful and positive update which I'm sure users will appreciate 🙂
  9. Put his in your custom CSS file and change the colors to suit: #elSearch select { background: #000000; color: #ffffff !important; } 🙂
  10. I made some severe changes to the Our Picks Carousel on the front page, you're welcome to use and adapt the following CSS changes that allows some significant manipulation of the Our Picks. This is before the changes: This is after the changes: /* Adjust our picks front page */ [data-role="carouselItems"] .ipsType_medium:not( .ipsType_richText ) { line-height: 1.53; display: none; } .cPromotedWidget_horizontal .cPromotedWidgetItem_content > .cPromotedWidgetItem_contentInner { flex-grow: 1; display: none; } [data-role="carouselItems"] .ipsPhotoPanel.ipsPhotoPanel_tiny.ipsType_blendLinks.ipsType_light { display: none; } [data-blocktitle="Our picks"] .ipsCarousel .ipsCarousel_inner { height: 330px !important; } .cPromotedWidgetItem .cPromotedHeader { min-height: 279px; } .cPromotedWidget_horizontal .cPromotedWidgetItem { width: 187px !important; display: flex; flex-direction: column; } .cPromotedTitle { font-size: 14px; font-weight: 600; } .ipsPad_half.ipsWidget_inner.ipsWidget_bottomBar { display: none; } .ipsBox--child { box-shadow: none; border-style: none !important; border-width: 0px !important; border-color: #26323e !important; } .cPromotedWidget_horizontal .cPromotedWidgetItem_content { padding-bottom: 15px; text-align: center; background: rgb(73 8 46); } Hope that helps 🙂
  11. On my home page I have a few carousels and they are doing what they are supposed to be doing except for one thing; once you hit the right slider arrow twice, you can't scroll back using the left slider arrow. Any ideas as to why this happens? With thanks https://moviebuffs.org
  12. If all your images are going to be the same size (I noticed one out of all them is not) then put this into your custom CSS file and it will get rid of the gaps. .elGalleryFlexbox_cell { height: auto !important; } Try it and see if that works for you 🙂
  13. Perfect - second code snippet did the trick. Many, many thanks for helping out it's very much appreciated. @Nathan Explosion and @Martin A.
  14. Here you go @Nathan Explosion https://moviebuffs.org/movies/category/15-coming-soon/ Forgot to day it's Adriano's Movies App
  15. @Martin A. Many thanks for that, but unfortunately this is not an IPS Pages app so that code will not work. I'm presuming the code snippet for the movies for the release date to show is: {{if $movie->status == 'Released'}} <li class="ipsDataItem"> <span class="ipsDataItem_generic ipsDataItem_size3"><strong>{lang="movie_release_date"}</strong></span> {{$date = \IPS\DateTime::ts( strtotime( $movie->release_date ) );}} <span class="ipsDataItem_generic">{datetime="$date"}</span> </li> {{endif}} I need an extra parameter to show that only on a certain page, in this instance page 15. With thanks
  16. I'm looking to add the following code to a template: {{$date = \IPS\DateTime::ts( strtotime( $movie->release_date ) );}} <div class="date1">{datetime="$date"}</div> The idea is to only show the release date of a movie on a specific page ID - in this instance it would be page-id='15' I'm presuming that this needs to be wrapped in an {{if}} statement, but the syntax goes above my level of understanding of IPS code. With thanks for any assistance.
  17. @A Zayed will you be updating this for 4.7 anytime soon? With thanks 🙂
  18. Always a pleasure and never a chore, happy to have been of help. If you need any further help I'm here 🙂
  19. I get this when looking at your pricing page, both as logged in and logged out (different browsers): And the error number returned is:
  20. I see it now - add this to your custom CSS file: .cAuthorPane_badge--rank { width: 120px; height: 30px; } That should do the trick - if nothing changes use this instead: .cAuthorPane_badge--rank { width: 120px !important; height: 30px !important; }
  21. @Petra Jane I noticed that your headers in the forums have no padding to take them off the edges of the container; if you add the following to your custom CSS file it will tidy them up for you 🙂 .ipsPageHeader { padding-left: 15px; padding-top: 15px; }
  22. I see the issue is resolved now and the images are showing correctly now 🙂
  23. LInk to website would be helpful, this could just be a simple CSS change 🙂
  24. @kmk modified CSS below sorts that issue for smaller screens, if larger screens are affected in the same way then adjustments to the CSS code in an @media command will be needed; hope that helps 🙂 /* Extra small devices (phones, 600px and down) */ @media only screen and (max-width: 600px) { .ipsCoverPhoto_photo { top: 0px !important; } .cClubCard .ipsPageHead_special { height: 105px; } }
  25. Many thanks for the help - it kind of throws me when something is working fine one day and then goes awry the next lol. If this happens again I'll follow these instructions now that I know what to do. I can also access the error logs now without that red bar warning. Many thanks again and to @Nathan Explosion for chipping in - I found that table BTW 🙂
×
×
  • Create New...