Search results

  1. Mark

    Version 1.2 (Multiple Categories Custom)

    not really, you need to store their choice in database etc. Much more too it than just that I am afraid.
  2. Mark

    Background

    uh where did you get that CSS file from? it has nothing to do with your website at all... appears stolen. anyway, I told you exactly what to do, but when you do that you will have 10 other things to sort out.
  3. Mark

    Background

    you want that on your "body" in user.css add this: body { background: url(skins/parabola/img/background.png) top center; }
  4. Mark

    Background

    this part of your CSS: nav .column .add_server in HTML would be something like <nav class="column"> <span class="add_server"> but your HTML code has none of this... so it cant possibly work.
  5. Mark

    Background

    a screenshot is 100% useless when troubleshooting code. Post your URL along with your edit
  6. Mark

    Version 1.2 (Multiple Categories Custom)

    anything is possible :)
  7. Mark

    Background

    that looks fine, try it and see, if it doesn't work keep reading/learning and trying until you figure it out :)
  8. Mark

    Background

    user.css
  9. Mark

    Only show for premium

    perfect thanks, i got it working: {$p_show_stats} - make sure you are adding this to skins/yourskin/child/stats.hml your plugin had a small mistake, you dont need .html on the template name corrected code: if($TMPL['premium_flag'] == 1) { $TMPL['p_show_stats'] =...
  10. Mark

    Only show for premium

    your initial post indicates you did not make a stats.html template in your plugin folder... perhaps you should go over the tutorial on how to make a plugin. http://visiolist.com/community/threads/how-to-create-a-plugin.20/ then if you still have questions, upload what you have so we can see.
  11. Mark

    Background

    .classname { background: url(path/to/image.jpg) top left no repeat; } further reading: http://www.w3schools.com/cssref/pr_background-image.asp
  12. Mark

    Only show for premium

    try removing the <?php and ?> tags from details_build_page.php
  13. Mark

    Mobile Version :)

    yup bootstrap is a mobile first CSS framework, easy to extend and rock solid :)
  14. Mark

    404 settings error

    Ask your host to check the mod security log, most likely they are blocking something.
  15. Mark

    Up & Down Arrow Images

    sorry mate, I honestly have no idea what you are asking
  16. Mark

    Godaddy hosting and .htaccess mod_rewrite

    we are happy to help you resolve the issue, but we need access to your environment to figure out the godaddy specific changes.
  17. Mark

    Up & Down Arrow Images

    you "get" the green arrows when that site is moving up the rank You can edit the arrow by replacing the image at skins/parabola/up.png
  18. Mark

    Brute force

    you need to hack the code to do that sources/user_cpl.php remove this line: $DB->query("INSERT INTO {$CONF['sql_prefix']}_ip_log (ip_address, timestamp) VALUES ('{$TMPL['ip']}','{$TMPL['timestamp']}')", __FILE__, __LINE__);
  19. Mark

    Screenshot Updater (Language Changed)

    Never witnessed anything like this before. If you have SSH on your hosting account you can run the following shell command to find out where this is coming from grep -R "har blitt lagt" *
  20. Mark

    Limiting Title Character Limit?

    the title is never displayed on the login form. the title is never displayed on the login form, I think you meant the join form... in that case you can simply add the maxlength HTML attribute in your title field in your join_form template...
Top