• What are you working on? v7
    7,420 replies, posted
[url]http://mobon.pimo.x10.mx/[/url] Just experimenting, I'm new.
[QUOTE=Mobon1;34862645][url]http://mobon.pimo.x10.mx/[/url] Just experimenting, I'm new.[/QUOTE] Looks really nice, but how about a solid color for the background? I feel it's kind of like a patterned shirt with a striped tie (a no no) EDIT: And I might be wrong but can't older browser not use rgb color codes? You are better off getting an rgb converter and using that.
[QUOTE=toaster468;34862709]Looks really nice, but how about a solid color for the background? I feel it's kind of like a patterned shirt with a striped tie (a no no)[/QUOTE] Changed it, but it feels a bit bland tbh, I may just make some dots or something.
[QUOTE=Mobon1;34862645][url]http://mobon.pimo.x10.mx/[/url] Just experimenting, I'm new.[/QUOTE] you can't be [b]that[/b] new just try styling that list a little more
[QUOTE=Mobon1;34862747]Changed it, but it feels a bit bland tbh, I may just make some dots or something.[/QUOTE] Try a lighter color.
[QUOTE=Mobon1;34862747]Changed it, but it feels a bit bland tbh, I may just make some dots or something.[/QUOTE] yeah, i actually suggest moving the content so it takes up a larger portion of the page
[QUOTE=Ac!dL3ak;34862757]you can't be [b]that[/b] new just try styling that list a little more[/QUOTE] Compared to some of the stuff people do on here, I feel pretty damn new haha. I changed it to a lighter pixel pattern thinger, and what do you mean by move it up? Like the entire div or the text to the edges, because that's been a bitch I can't get around.
Hey acid, how do I host the JSON on my php file to get on the client?
Also, how do you do padding in a div without changing it's width? Because I can't get the text to go to the very top of the div, but it'll go to the very sides, which I'm using text-indent to get around.
[QUOTE=Mobon1;34862846]Also, how do you do padding in a div without changing it's width? Because I can't get the text to go to the very top of the div, but it'll go to the very sides, which I'm using text-indent to get around.[/QUOTE] you can't the padding adds width/height. all you can do is make the width smaller as you increase padding.
[QUOTE=toaster468;34862817]Hey acid, how do I host the JSON on my php file to get on the client?[/QUOTE] [php] <?php header('Content-type: application/json'); die($json); [/php] Simples.
Been working on my own website with Bootstrap, thinking of trying to make an editorial website or something, problem is I'm no designer, I can make frond end, but only if I have a design to work off. I am really more of a developer than a designer. Are there many hobbyists out there looking to pair up for a project? I'm not the best developer, but I know enough to produce working systems and am learning a lot as I recently got a job as a trainee developer at a local company.
[QUOTE=jaybuz;34862938][php] <?php header('Content-type: application/json'); die($json); [/php] Simples.[/QUOTE] $json = json_encode( $data );
[QUOTE=zzlawlzz;34857382]here is something i've been working on quote straight from minecraft chat thread[/QUOTE] Update~ Everything that I wanted now works. This means... you can use settings! [url]http://jung3o.com/mcpremuser.zip[/url] I'm submitting to MyBB so I'll give support and updates there.
But how does my JQuery script get it? Can I have some example code?
Google "jquery get json"
Here's a handy-dandy jQuery cheatsheet. I almost never Google anything about it again. [T]http://www.javascripttoolbox.com/jquery/cheatsheet/JQueryCheatSheet-1.3.2.png[/T] [editline]25th February 2012[/editline] Here's a peic of code I use for JSON with jQuery: [PHP] $.ajax({ url: "/php/getstuph.php", dataType: "json", success: function (data) { $.each(data, function (i, n) { $("#items").append($("<div />") .text(n.name)) }) } }) [/PHP]
Ok so I got it working but it doesn't work unless I echo the json, is this good or am I doing it wrong?
[QUOTE=toaster468;34863490]Ok so I got it working but it doesn't work unless I echo the json, is this good or am I doing it wrong?[/QUOTE] die echos the contents and then exits the script. What else are you doing after displaying the json?
[QUOTE=jaybuz;34863523]die echos the contents and then exits the script. What else are you doing after displaying the json?[/QUOTE] Nothing, so I guess I will use that.
[QUOTE=toaster468;34863540]Nothing, so I guess I will use that.[/QUOTE] or you could find out why die() isn't working.
die() has never worked for me under xampp but exit() works just fine and one is meant to be an alias of the other
[img]http://puu.sh/ikgB[/img] Gettin' there.
I think I made my background swell (or at least better): [img_thumb]http://i.cubeupload.com/ZfVKPQ.png[/img_thumb]
-snip-
[img]http://gabrielecirulli.com/p/20120225-182507.png[/img] For some reason my portfolio site's source files folder weights more than 8GB. What the heck.
On the topic of domain names ( like two pages back, but whatever ), Valve must be pissed. As steam.com honestly isn't being used at all, even though Valve has probably offered them thousands for the domain.
[QUOTE=Weiss;34863665]die() has never worked for me under xampp but exit() works just fine and one is meant to be an alias of the other[/QUOTE] Interesting - I have found that in some windows installations "exit;" does not work but "exit();" does so make sure you include the brackets.
[QUOTE=spidersdesign;34879623]Interesting - I have found that in some windows installations "exit;" does not work but "exit();" does so make sure you include the brackets.[/QUOTE] Wouldn't doing exit; just be a reference the function and not a call? Of course that would not work.
[URL="http://i.imgur.com/eoh81.png"][IMG]http://i.imgur.com/eoh81l.png[/IMG][/URL] Been working on a new personal site. I'm a bit shite at web design though, so it's not great. A start though.
Sorry, you need to Log In to post a reply to this thread.