Jump to content

Cookie Monster

Moderator
  • Posts

    1,420
  • Joined

  • Last visited

  • Days Won

    76

Everything posted by Cookie Monster

  1. What is the problem with the progress bar ? € and $ are both UTF-8 and not a standard :) those are signs not special letters :)
  2. Read this might be of good assistance aswell :) http://stackoverflow.com/questions/423693/how-can-i-properly-display-german-characters-in-html The reply explains it the best :)
  3. Well is your mysql db setup as UTF-8 aswell ?
  4. Welcome to Webflake Community! Please remember to feed me cookies :P
  5. Hello and welcome to webflake @thefiredragon First of all make sure you use UTF-8 as metadata and your database. You can in AdminCP > Customization > Your Theme > Edit HTML / CSS > globalTemplate Find </header> and before that add <meta charset="UTF-8">
  6. Well if you send me a PM with a test account with AdminCP and the link I can take a look and see if i can get it sorted for you.
  7. Well you can PM me if you want and need help with some customization or make a thread about it. Just explain it a bit more and add some images.
  8. I did check with offical IPS, I do have the same plugin for IPS 4.1 :)
  9. Well the difference is there isn't two blocks in my scrip its 1 line with both of them in one. Person posts a new topic. It will show up. Person replies to a that topic or another topic shows up in the same box :)
  10. Can you post me the content of your file located /home/senaxxps4/public_html/applications/downloads/modules/front/downloads/browse.php Please use the code tag when posting this (its the <>) I think there is a IPS bug on this. As I have the same, nothing uploaded clicking on it gives the error. Possible because of nulled but not sure.
  11. I see, so this is the RSS generated by the IPS Download, now i'm following. Well gonna do a few tests.
  12. If you can link me the feed I can do a test on my forum board aswell if you want.
  13. Hi SceneFile. Have you tried edit the RSS feed in AdminCP directly after a upgrade ? Just to see if this grabs any effect.
  14. Thank you :) I updated the code a bit, and added a screenshot, though the CSS needs to be tweaked but he gets the idea of what it is. Also updated the code with premade links for it, for a simple cut and paste.
  15. @allucard What IPS Theme is it you are using as standard ? This is the CSS to make the effect of two images. This is extracted from Animated and you will have to customize it for your theme. this creates the header (globalTemplate) <header id='header' class='animateBack'><div class='animateFront'> <div class='ipsLayout_container'> <div class='ipsClearfix alignHeader'> {template="logo" app="core" group="global" params=""} </div></div></div> </header> /* ============== */ /* HEADER */ /* ============== */ #header { background-color: {theme="headerBackground"}; } /* Background position = width of banner_bg.jpg */ @-webkit-keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @-moz-keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @keyframes headerAnimate { from { background-position: 0 50%; } to { background-position: -1584px 50%; } } @-webkit-keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } @-moz-keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } @keyframes headerAnimateBack { from { background-position: 0 50%; } to { background-position: 1920px 50%; } } .animateBack { background-image: url('http://i.imgur.com/ycHMqgD.jpg'); background-repeat: repeat-x; background-position: 0 50%; } .animateFront { background-image: url('http://i.imgur.com/NRtTWhG.png'); background-repeat: repeat-x; background-position: 0 50%; padding-bottom: 10px; box-shadow: 0px -1px 0px rgba(255,255,255,0.15) inset; } /* Restrict animation to desktops */ @media screen and (min-width:980px){ .animateBack { -webkit-animation: headerAnimateBack 200s infinite linear; -moz-animation: headerAnimateBack 200s infinite linear; animation: headerAnimateBack 200s infinite linear; } .animateFront { -webkit-animation: headerAnimate 150s infinite linear; -moz-animation: headerAnimate 150s infinite linear; animation: headerAnimate 150s infinite linear; } } These two lines controls what image there is there. background-image: url('{resource="ipsfocus/headerTop.png" app="core" location="front"}'); background-image: url('{resource="ipsfocus/headerBottom.jpg" app="core" location="front"}'); This will give you something like this.
  16. As I said it's a PHP and css thing in a theme to make it work currently out so will post when I'm back in front of a computer
  17. It's two images and css I'll write some css for you once I'm home I'm out atm but they use the theme animate. So you can just replace the images in it to get the same sort of effect.
  18. *Feeling amazing on the coding part today!* :cat:

  19. This is how it will look. With posts (As you can see it only show latest reply) but also topics. As you can see, its who answered on it but also updates with the number as normal.
×
×
  • Create New...