Jump to content

Luca Munich

Enthusiast
  • Posts

    235
  • Joined

  • Last visited

  • Days Won

    45

Everything posted by Luca Munich

  1. Go to this link: https://raw.githubusercontent.com/lucalexandre/halloween-bats/master/bat.js Save the file; Upload in your website; Go to your global template; Add this line: <script type="text/javascript" async src="/uploads/especiais/bat.js"></script> Preview: http://codepen.io/munichluca/pen/pEGbXa
  2. First of all, choose the theme you want to modify Click on "Edit HTML and CSS" Go to "Templates > core > front > global" and search for template "footer" Search for: {{if \IPS\Settings::i()->privacy_type != "none"}} <li><a href='{{if \IPS\Settings::i()->privacy_type == "internal"}}{url="app=core&module=system&controller=privacy" seoTemplate="privacy"}{{else}}{setting="privacy_link"}{{endif}}'>{lang="privacy"}</a></li> {{endif}} And replace with: {{if \IPS\Settings::i()->privacy_type != "none"}} <li><a href='{{if \IPS\Settings::i()->privacy_type == "internal"}}{url="app=core&module=system&controller=privacy" seoTemplate="privacy"}{{else}}{setting="privacy_link"}{{endif}}' data-ipsDialog>{lang="privacy"}</a></li> {{endif}} Then, add this code below: {{if \IPS\Settings::i()->gl_type != "none"}} <li><a href='{{if \IPS\Settings::i()->gl_type == "internal"}}{url="app=core&module=system&controller=guidelines" seoTemplate="guidelines"}{{else}}{setting="gl_link"}{{endif}}' data-ipsdialog data-ipsdialog-title="{lang="guidelines"}">{lang="guidelines"}</a></li> {{endif}} Okay, now your rules / privacy policy will appear as a popup. To remove the popup and let ordinary, just remove the "data-ipsDialog" of your code.
  3. Chelsea Football Club What's your favorite programming language?
  4. Send me your board url via PM please. I'm not using this plugin anyome, and I need to see a little thing.
  5. Login usually in your ACP; Select the theme you want to add it; Click "Edit HTML and CSS"; In the "CSS" tab, add it in "custom.css": ::-webkit-scrollbar { width: 12px; } ::-webkit-scrollbar-track { -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.3); -webkit-border-radius: 1px; border-radius: 1px; } ::-webkit-scrollbar-thumb { -webkit-border-radius: 1px; border-radius: 1px; background: rgba(114,114,114,0.8); -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0.5); } ::-webkit-scrollbar-thumb:window-inactive { background: rgba(114,114,114,0.4); }
  6. If you want to increase or decrease....
  7. Enter in your ACP; Go to "Customizations > Themes > "Theme that you use" > Edit HTML and CSS"; Go to "Templates > core > front > global > logo" At the beginning of your code, place: <div class="blur"> At the end of your code, place: </div> <style> .blur img { -webkit-transition: all 1s ease; -moz-transition: all 1s ease; -o-transition: all 1s ease; -ms-transition: all 1s ease; transition: all 1s ease; } .blur img:hover { -webkit-filter: blur(5px); } </style> Final result: http://codepen.io/munichluca/full/xEaxQE/
  8. <center> <a href="http://www.cheats-inc.com" rel="home" accesskey="1" style="line-height: 110px;"> <img src='http://www.cheats-inc.com/forum/public/style_images/cheats-inc/logo.png'></a> </center>
  9. It's and code customization and you can make it in your theme, I have made in my website: Anyway, I can't send you the code, because WebFlake don't allow to share WF customizations.
  10. This link can help you too: https://invisionpower.com/4guides/themes-and-customizations/template-syntax/introduction-to-template-syntax-r137/
  11. Go to your theme templates and go to: core > global > GlobalTemplate Add a commented line before <head> tag. Example: Will be looks like this:
  12. This thing? http://prntscr.com/cqqw0u
  13. In your css: .left { display: inline; float: left; } .right { display: inline; float: right; } .center { display: inline; text-align: center; } In your infopane (HTML): For right: <div class="right">CODE</div> For left: <div class="left">CODE</div> For center: <div class="center">CODE</div>
×
×
  • Create New...