Jump to content

TAMAN

Clients
  • Posts

    3,760
  • Joined

  • Last visited

  • Days Won

    25

 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 TAMAN

  1. I will fix it on next update Quick fix for you go to ACP > Pages > Template > Block Plugin Templates > RecordFeed > Pages_Slider In pages_slider template find slider_article_truncatecontent replace with slider_article_content_truncate
  2. If you just want to hide it add this to custom.css .cAuthorPane .cAuthorPane_info .cAuthorPane_photo + li{display: none;}
  3. In globalTemplate find {advertisement="ad_global_footer"} Copy the line and remove it from its current place Then add it inside ipsLayout_mainArea at the end Now In ACP > System > Advertisements, Select "Just above the page footer" option for your Advertisements To make it centered, try to wrap your advertsment in a div with align="center" example <div align="center"> your advertsment code </div>
  4. 1. make sure the block template key hasn't changed, if its same try to disable the articles in theme settings then save, and then re enable to see if it works 2. If you show me screenshot where you want to appear i can help
  5. i dont know whats you talking about what is a text message block and What this has to with the styles?
  6. Select "Use as a base for a custom template" and add the header and add your header <h3 class='ipsWidget_title ipsType_reset'>{$title}</h3>
  7. Add this somewhere on top of your custom block <h3 class='ipsWidget_title ipsType_reset'>Header</h3>
  8. Use data-navTitle instead of nav_title .ipsNavBar_primary > ul > li[data-navTitle="FORO"] > a:before { content: "\f086"!important;}
  9. Version 1.0.3 Support for IPS 4.1.18
  10. Version 2.0.1 Support for IPS 4.1.18 + Minor bug fixes
  11. Which font exactly? body? body{ font-size: 13px; } --------- Thank you
  12. Not really important, no errors: )
  13. do you have the font on your pc! or somewhere else! ips suite is already using Helvetica font requires html editing, i can help just specify where you want exactly
  14. You need to use @font-face rule to include the font example @font-face { font-family: Yourcustomfontname; src: url(YouCustomFontLink.ttf); } /* slide header */.swiper-slide .slide-container h4, /* slide content */.swiper-slide .slide-container .ipsType_richText{ font-family: "Yourcustomfontname", Helvetica Neue, Helvetica, Arial, sans-serif; } --- Note: ttf browser supports http://caniuse.com/#feat=ttf You should also get other formats of your font to use multiple formats of your font @font-face { font-family: 'MyWebFont'; src: url('webfont.eot'); /* IE9 Compat Modes */ src: url('webfont.eot?#iefix') format('embedded-opentype'), /* IE6-IE8 */ url('webfont.woff2') format('woff2'), /* Super Modern Browsers */ url('webfont.woff') format('woff'), /* Pretty Modern Browsers */ url('webfont.ttf') format('truetype'), /* Safari, Android, iOS */ url('webfont.svg#svgFontName') format('svg'); /* Legacy iOS */ }
  15. use your custom font like this custom.css @import url('https://fonts.googleapis.com/css?family=Open+Sans'); /* slide header */.swiper-slide .slide-container h4, /* slide content */.swiper-slide .slide-container .ipsType_richText{ font-family: 'Open Sans', sans-serif; }
  16. it is not just dark, a white theme also Anyways, sorry ^^
  17. Well, i haven't tried, but what im sure about is the slides are all on top each others, so basically your current active slide image and the background color hides your other slides otherwise it is messy slider if you remove the slide images and background color, overlay pattern... it can be done with css but needs alot of work, i would help but really dont have time to work on this now, sorry mate, maybe another time
  18. No, not really, because the slider needs an overlay to hide other slides
  19. {{foreach $author->contentProfileFields() as $group => $fields}} {{foreach $fields as $field => $value}} <li class='ipsType_break'> {$value|raw} </li> {{endforeach}} {{endforeach}}
  20. All custom profile fields is hided on phone you can remove ipsResponsive_hidePhone in customFieldsDisplay template : )
×
×
  • Create New...