Get your own customer support community

Recent activity

Subscribe to this feed
  • idea

    Steve shared an idea in CandyCrib on November 29, 2008 13:25:

    Steve
    Faster rendering of page
    ello :oP

    I'm able to do this using Opera and custom CSS but I thought it may be helpful or nice for other users to get faster page rendering by specifying some image sizes... in particular the avatars.

    I mean my ugly "hack" right now is as follows (in a custom CSS file):

    IMG[src*="30x30"],
    IMG[style*="30x30"]
    {
    width: 30px;
    height: 30px;
    }

    IMG[src*="45x45"],
    IMG[style*="45x45"]
    {
    width: 45px;
    height: 45px;
    }

    IMG[src*="46x46"],
    IMG[style*="46x46"]
    {
    width: 46px;
    height: 46px;
    }

    ... but obviously you can code this in with class names since the above ATTR selectors aren't necessarily support in all browsers.

    This definately speeds up rendering on the front page and users page and minimizes the trickle effect you get as images load.
  • problem
  • problem

    Steve reported a problem in CandyCrib on November 27, 2008 13:45:

    Steve
    Login Request After Sending Message
    Think some people have reported this problem, that you are prompted to login when you try to send a message.

    Think root of the problem is when you don't fill out the subject field, tested it and it asks me to login.

    My guess would be because the reply from the server when sending the message fails and enters the 'else' block of the if statement here (from function 'CC_Profile_Pm_Send'):

    success: function(msg) {
    //alert(msg);
    var result = eval('(' + msg + ')');

    $('#panelError').showError(String(result.Message));
    if(result.Success == 1) {
    $.modal.close();
    } else {
    CC_Login_Open();
    }

    So either need to do some validation before posting the message, or server needs to be more lenient and allow for an empty/null subject.

    Steve :oP
  • problem

    Steve replied on November 26, 2008 22:18 to the problem "VIP Star Failing" in CandyCrib:

    Steve
    Not that im on the developer team, but let them know what web browser you use (and version if possible) ... and any error messages you get
  • problem

    Steve replied on November 25, 2008 11:24 to the problem "MyProfile Layout buggy in Opera" in CandyCrib:

    Steve
    Ok, just a lil tid bit of info, I used javascript to get a snapshot of what the HTML looks like for the myInfo DIV... you can see where the problem is occuring in Opera because it interprets the <./FORM> near the beginning as a closing tag for the DIV:

    The original HTML is...

    <.div id="myinfo">
    <.div id="ctl00_ContentPlaceHolder1_UserMyInfoControl1">

    <./form>

    but when using an alert on the myinfo outerHTML property in Opera

    <.DIV id="myinfo" class="ui-tabs-panel ui-tabs-hide">
    <.DIV id="ctl00_ContentPlaceHolder1_UserMyInfoControl1">

    <./DIV>

    Again, I know Opera isn't a priority, but figure this may point you in the direction should you choose to fix it at some point

    Steve
  • problem

    Steve replied on November 25, 2008 10:19 to the problem "Hitting Enter/Return on Login Fails in Opera" in CandyCrib:

    Steve
    Ok, looked in to this problem a bit more... when you push enter/return in opera, it actually posts your login details via old fashioned request (i.e. i actually see all my login details in the address bar)... where as clicking on the button goes through validation and then uses javascript to create a POST request.

    Off the top of my head (been a while since I've done this sorta stuff).. if you were to edit the FORM tag for the login with an onsubmit event that mimics the onclick event for your submit button, I think it should fix the problem.

    <.form id="frmLoginPanel">

    should maybe be something like

    <.form id="frmLoginPanel" onsubmit="if($('#frmLoginPanel').valid()) { CC_Login_Auth(); return true} else {return false};">

    ... Above line is a bit messy and you may be better housing validation and boolean return in a single function so more along the lines of

    <.form id="frmLoginPanel" onsubmit="return checkloginform()">

    with a script like...

    function checkloginform()
    {
    if($('#frmLoginPanel').valid())
    {
    CC_Login_Auth(); return true
    }
    else
    {
    return false
    }
    }

    ... there goes another rant :)

    Steve
  • problem

    Steve reported a problem in CandyCrib on November 25, 2008 09:52:

    Steve
    MyProfile Layout buggy in Opera
    Hi all,
    well I know as Opera isn't as popular as IE or Firefox that making sure the site works on it isn't as big a priority, and I understand why, so thought I'd look in to why the layout of all the tabs and their contents are all over the place in Opera, as well as the updates not appearing on the right where they should be.

    Anyway, looking through the codes, I found out where the problem was. It is withing the DIV tag block for the "My Info" section i.e. <.div id="myinfo"> ... the problem in here is that you break out of the <.FORM> at the start of the page too early, and it throws the HTML DOM out of sync (and regardless of whether it works in Opera or not, I don't think this is a valid HTML document because of it).

    So I tried removing the following lines, and it seemed to fix everything:

    <./form> <!-- disable stupid ASP.NET form... which is useless :) -->
    <.form id="personalDetails" action="#">
    <.fieldset>

    and

    <./fieldset>
    <./form>
    <.form action="#">

    Now the only problem with this is that you would have to modify the validation for the fields in that block, currently you have something like:

    if($('#personalDetails').valid())

    which would no long work, so you may need to adapt the validation to check the relevent boxes... which shouldnt take too much work to correct, then you have a better formed HTML document.

    This shouldn't mess around with the data submission either, because the function that does it builds up a POST request out of the individual fields rather than submitting a form. Of course, it may require some testing in the different browsers to make sure it all works, but if you rather I tried doing it on my machine rather than you editting the site, I'm happy to.

    This was another geeky report by...

    Steve
  • problem

    Steve reported a problem in CandyCrib on November 23, 2008 04:40:

    Steve
    Word-Wrap within blogs... a geek's "rant"
    Hi,
    I realise this is going to be a bit technical, but I was having some problems with copying urls that people had posted in blogs (but hadn't made links out of them).

    After trawling through the codes, I found the problem to be in the breakWords function in the javascript. On "words" longer than 32 characters, you currently have this applied:

    a[i] = a[i].split('').join(c);

    ... which I believe is a fix to make sure that browsers that don't properly support word-wrapping actually do wordwrap. I understand why you need to do this to make the flow ot pages ok and not stretch blog windows superwide by people being over-excited with "WEEEEEEEEEEEEEEEE" type responses ... but it proves to be problematic when you go to copy a URL someone has posted because within that URL are alot of hidden characters that need to be removed for the URL to work when pasted in a browser.

    I realize this is probably not a problem for IE but I found it to happen in FireFox (3.0.3) and Opera (9.62).

    Would it be possible to increase the max word length so that it minimizes on the "valid" long words being messed up?

    example: http://www.candycrib.com/Blog/post/ki...
    --------

    A different problem I've noticed is that in blogs that when pics are put in, that haven't been given a reasonable size, you then have the problem of that blog being stretched super wide. A word-around that would work in FireFox and Opera (and possibly other browsers) is the CSS property max-width, and set that on images within your 'wordwrap' classes. This doesnt work for IE though. Another solution would be to set it programmatically when the blogs are editted i.e IMGs can have a maximum of say 600px width if the user tries to set it themselves, and if they don't set it, and the uploaded image is wider than 600px, or if a height is specified and the scaled up width is greater than 600px, then its scaled down to fit within the width of your blogs

    example: http://www.candycrib.com/Blog/post/vi...

    --------

    Also, while I was looking, I noticed your trim function, while you use regular expressions to neatly remove the excess space at the beginning, you use a different approach to remove it at the end. Could you not use something like this instead?

    str = str.replace(/^\s+|\s+$/g,"");

    An improvement on that still, may be to allow a max of 4 spaces at the beginning (if people try to indent things manually).. so if your parser did read each line, you could use something like this maybe?

    str = str.replace(/^\s{5,}/g," "); // Any blocks of whitespace of 5 or more is replaced with 4 spaces

    str = str.replace(/\s+$/g, ""); // Any whitespace at the end is removed

    Course this only works if your document parser/walker is going through and reading each line.

    Anyway, I realize there was a lot in that, but hope it was helpful in someway

    PS: I've noticed that new lines in blogs are dealt with strangely, in that I can't always put a few lines between my text and then an inserted image, but too lazy to look in to why right now after all that typing :P
  • idea

    Steve shared an idea in CandyCrib on November 18, 2008 11:43:

    Steve
    Floating Toolbar
    Hi again,
    currently in the top left there is the small navigation menu for going to your messages, profile page, blogs and logout.

    What I think might be cool is to have this... or another menu float (maybe down the left where the Feedback button is now), showing a similar menu... that way when people refresh the page and are at a bottom of a blog, or scrolling, they have access to this menu (as well as seeing if they have new messages).
  • idea

    Steve replied on November 14, 2008 14:49 to the idea "Logging on" in CandyCrib:

    Steve
    It would be nice... especially when I can't get Opera to remember my username/password with the wand thing
  • idea

    Steve replied on November 05, 2008 23:13 to the idea "Candy Chat" in CandyCrib:

    Steve
    I think that's just gonna cause the girls to get harassed like mad, especially if they don't reply
  • problem

    Steve replied on November 03, 2008 16:14 to the problem "Hitting Enter/Return on Login Fails in Opera" in CandyCrib:

    Steve
    It's not a big problem though so no worries... it's only a small niggle in comparison to the other things going on, just a mouse click instead of a key-press.
  • idea

    Steve shared an idea in CandyCrib on November 03, 2008 12:50:

    Steve
    Date & Time
    There are quite a few areas it'd be cool to have a more specific note of the date or time:

    - On comments or replies in blogs, currrently it just shows the date but would be cool if it showed the approx time as well

    - The date an image or video was uploaded, maybe I'm blind and just missing this, I guess you could put the time in as well

    - The date someone joined, doubt time is really needed here

    What I don't think is needed is date and time that someone was last logged in, think this is invading privacy a bit too much.
  • problem

    Steve reported a problem in CandyCrib on November 03, 2008 11:59:

    Steve
    Is A Fan Of...
    Currently, the link on people's profile page to show the full list doesnt work. Upon clicking the link (tested in IE and Opera), this just hides the link but doesnt show the full list... however viewing the list of "Fans Of" does work.

    Also, the tally/count of "Is A Fan" of is incorrect (at least it is for me, SteveT)

    It may be helpful to have a section/tab on the "My Profile" page which shows fans, whether it be ones you are a fan of, or ones that are a fan of you (this could incorportate the suggested feature I saw before about showing some sort of status "XXX is YYY")
  • problem

    Steve reported a problem in CandyCrib on November 03, 2008 11:24:

    Steve
    Hitting Enter/Return on Login Fails in Opera
    If you enter your login details (and this is on Opera), and hit Enter to submit, I usually get a prompt to save my details but the login fails. The only way to login is to use the button instead.
  • idea

    Steve shared an idea in CandyCrib on November 02, 2008 21:05:

    Steve
    New Sent Messages
    When I sent a new message to someone, it'd be handy that that new message was the start of a conversation, rather than when they reply... at least that way I can tell that a message I sent has actually sent and not got lost in the ether (and I dont end up sending a message several times)
  • Steve started following the question "people i'm fans of" in CandyCrib.

  • idea

    Steve shared an idea in CandyCrib on November 01, 2008 20:47:

    Steve
    Next/Prev on Images & Fanning it
    Currently on content, the previous and next navigation buttons for content... as well as the "Are you a fan?" links are below the image/video.

    I would prefer these above above the image... I wouldn't have to scroll down to it each time.
  • problem

    Steve replied on November 01, 2008 02:25 to the problem "Summary Of Bugs" in CandyCrib:

    Steve
    Ok, using IE7 to update my information... this works but I think the "Updated sucessfully" box should be disappearing after a certain time, or at least when you tab away and back in.

    Also, I went to move some stuff in to the "Interests" section, saved it, and this didnt appear on my profile at all so had to change it back
  • idea

    Steve replied on November 01, 2008 00:44 to the idea "White Area Navigation" in CandyCrib:

    Steve
    CONTENT PAGE (Per Image)
    I'd move the image selection that's on the right somewhere else... maybe to the right of the current date, because I think the comments and the comment box should be high up on the right side.

    Also, similar to how it was before, maybe tab/alternate between displaying images and videos, or maybe combine them (show a ghosted camcorder over videos to show that they're different)
next » « previous