Search results

  1. Basti

    searchbox and layout on smaller screens of sync

    It happens because you removed fixed header width and used such a big logo. The result is, a 100% width logo area, leaving the ad zone html, which gets push down a line and floated right = next to the search box. Easiest solution, since you not have room up there for the ad anyway, remove the...
  2. Basti

    Wrong ranking?

    You use hardcoded template tags, {$unq_in_0_monthly} ( looking at stats, the member has that IN count for current month ), if you not rank by the same period, you get false displays. So make sure the template tag contains the proper string daily, weekly or monthly, depending on your period in...
  3. Basti

    VisioList 1.4

    for status check using fsockopen, i use the following, dunno how the screenshot grabs it, but i guess it should be similar. Basicly what we do is, if no response from first one, check the specific dns srv record using the address ( no http, www ). If it has a result, grab the data the users...
  4. Basti

    VisioList 1.4

    Just wondering, sinve you need to get the srv record of many gameservers hosted with enjin to get the real address, can it be that the screenshot also need to make use of this?
  5. Basti

    Again..me :-) badge help

    So what is needed here? replace the badge with buttons? or keep badge and add buttons below?
  6. Basti

    Help please about

    Your welcome
  7. Basti

    VL Premium Membership

    Oh :D On parabola, yes would not use bigger, as the layout cant hold much more, unless you modify your design, and 468 is a common size
  8. Basti

    VL Premium Membership

    What exactly is the issue here? you can do all that. You have extra premium files, table_top_row_premium.html and table_row_premium.html Make text bolded there, add extra info or whatever really. And check admin settings in the premium section. Hits in boost, daily, weekly, monthly
  9. Basti

    Help please about

    You placed it wrong in html You place it within the navigation, which is wrong Write it into the content area after the following <div id="content"> <div class="cb"> </div>
  10. Basti

    vote button

    Look at your table_top_row_premium.html you have 1 to many closing div ( </div> )
  11. Basti

    Link Code Background

    Interesting, maybe that skin had some inline css on the link code html files
  12. Basti

    Default Banner Not Displaying For Imported Members

    When imported from toplistx, did you had a default banner already? Did your previous members had any? Properbly need to include a check in the importer to check for empty banner. Looks like it currently just imports whatever the toplistx member had before, if it empty, it also empty on VL 1)...
  13. Basti

    vote button

    {$unq_in_0_daily} {$unq_out_0_daily} Where 0 is today/this week, this month. Goes from 0-9, 0 as said today, 1 yesterday etc daily, is daily, weekly or monthly
  14. Basti

    Link Code Background

    The link codes are within a textarea, which defaults to whitish gradient textarea, input{ font-family: sans-serif; font-size: 12px; padding: 6px; border: 1px solid #ccc; border-radius:5px; color: #666; background: #ffffff; /* Old browsers */ /* IE9 SVG, needs...
  15. Basti

    I want to change my domain and install visiolist in new domain

    No issues there, but you might need to request a new screenshot api
  16. Basti

    Upgrade help needed

    If you updated that plugin also, that is now found under the "general settings" tab As of now, that seems to work, guess you fixed it. Also due the huge update you made. Have a look in the screenshots plugin. If there is a file called "stats_compile_stats.php", delete it. Also delete...
  17. Basti

    vote button

    The css for the button is display: block; means they all go on their own line, out of the head try pasting in your user.css a.stats_vote { display: inline-block; } Other than that, a url would be good to easier provide help
  18. Basti

    vote button

    And what you are stuck with? What you tried? Should work by just copying the html into that place. <a href="{$list_url}/index.php?a=in&u={$username}" class="stats_vote" rel="nofollow">VOTE</a>
  19. Basti

    display ranking on profile page

    Great, you should however make sure to properly database escape values. If category includes a quote for example it would break everything $result = $DB->query("SELECT sites.username FROM {$CONF['sql_prefix']}_sites sites, {$CONF['sql_prefix']}_stats stats WHERE sites.username = stats.username...
  20. Basti

    Upgrade help needed

    Hey Kelly, hope all going well. That errors coming from the newest member plugin ( not up to date ). Since that plugin looks quite old on your list, download newest member plugin from here http://visiolist.com/community/resources/ and reupload it. Normally you would just hit the plugin update...
Top