1. Post #121
    Sprite's Avatar
    October 2011
    294 Posts
    http://sekwet.k8r.us/ad-page/

    the "features" div isn't centering...

    2 hours of figuring... yeah. didn't work

    Edited:

    the thing is. the width is defined and it's still just telling me "no"
    Reply With Quote Edit / Delete Windows 7 United States Show Events Dumb Dumb x 2 (list)

  2. Post #122
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    what kind of fucking web dev forgets a doctype.

    Edited:

    the first thing everyone should type in their html file should be
    <!doctype html>
    <html>
    <head>
    </head>
    <body>
    </body>
    </html>
    Reply With Quote Edit / Delete Windows 7 United States Show Events Agree Agree x 1 (list)

  3. Post #123
    Sprite's Avatar
    October 2011
    294 Posts
    what kind of fucking web dev forgets a doctype.

    Edited:

    the first thing everyone should type in their html file should be
    <!doctype html>
    <html>
    <head>
    </head>
    <body>
    </body>
    </html>
    Who said I'm a web developer?
    Reply With Quote Edit / Delete Windows 7 United States Show Events Dumb Dumb x 4 (list)

  4. Post #124
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    Who said I'm a web developer?
    then why are you making someone a website when you have no knowledge?

    Edited:

    what do you call yourself?
    Reply With Quote Edit / Delete Windows 7 United States Show Events Dumb Dumb x 1 (list)

  5. Post #125
    Sprite's Avatar
    October 2011
    294 Posts
    Because it pays? I'm a wage slave, what can I say?

    They call me Orion... but you already know that ;)
    As far as my occupation?
    Script Kiddy
    Reply With Quote Edit / Delete Windows 7 United States Show Events Dumb Dumb x 10 (list)

  6. Post #126
    Mombasa's Hubby :3
    venn178's Avatar
    October 2008
    3,886 Posts
    Code:
    #top-widget-area #top-podcast,
    #top-widget-area #top-left,
    #top-widget-area #top-right,
    #top-widget-area #top-center {
    	background-image: URL;
            float: left;
            margin-right: 14px;
            margin-bottom: 10px;
            padding: 5px;
    	border-style: solid;
    	border-width: 1px;
    	border-color: #ffffff;
    }
    The <div> tags calling on those id's refuse to load the image. They'll load anything else I throw in there, but I cannot get div tags to support a background image.
    Reply With Quote Edit / Delete Windows 7 Show Events

  7. Post #127
    toaster468's Avatar
    January 2010
    2,802 Posts
    I got this legal question, I am making a Tumblr blog template and I want to know if it is legal for me to use the 960 Grid Library and distribute it, it is protected under GNU and MIT licenses. I am not going to sell it. Do I need to give a copyright notice? I looked at a website that used it and I see no obvious markings about it.

    The library:
    http://960.gs/

    Website that uses it but doesn't give reference to a library:
    http://fedoraproject.org/
    Still need advice here please!
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  8. Post #128
    Proud Brony
    commander204's Avatar
    May 2008
    3,719 Posts
    Still need advice here please!
    http://en.wikipedia.org/wiki/GNU_General_Public_License

    and

    http://en.wikipedia.org/wiki/MIT_Licence

    "It is a permissive license, meaning that it permits reuse within proprietary software provided all copies of the licensed software include a copy of the MIT License terms. Such proprietary software retains its proprietary nature even though it incorporates software under the MIT License."

    You should be fine as far as I understood it, but I'm not a legal counsellor so be sure to judge yourself.
    Reply With Quote Edit / Delete Windows 7 France Show Events

  9. Post #129
    lkymky's Avatar
    December 2007
    500 Posts
    gametracker's server status widget is an image... im assuming this is done with PHP... but how...?
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  10. Post #130
    OFWGKTA
    Liber's Avatar
    July 2005
    5,376 Posts
    http://www.nielsgade.dk/adnan/index.html
    alright, firstly, the green box needs a scrollbar. It's a div.
    Second, it needs to not go out of bounds like the blue one does.
    Info is blue, main is green
    Code:
    #info
    {
    	background-color:#0053ff;
    	position:fixed;
    	height:513px;
    	width:255px;
    	margin:auto;
    	top:255px;
    	left:-769px; 
    	right:0;
    	z-index:2;
    }
    #main
    {
    	background-color:#3F0;
    	position:fixed;
    	height:513px;
    	width:769px;
    	margin:auto;
    	top:255px;
    	left:256px; 
    	right:0;
    	z-index:3;
    }
    Reply With Quote Edit / Delete Windows 7 Denmark Show Events

  11. Post #131
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    http://www.nielsgade.dk/adnan/index.html
    alright, firstly, the green box needs a scrollbar. It's a div.
    Second, it needs to not go out of bounds like the blue one does.
    Info is blue, main is green
    Code:
    #info
    {
    	background-color:#0053ff;
    	position:fixed;
    	height:513px;
    	width:255px;
    	margin:auto;
    	top:255px;
    	left:-769px; 
    	right:0;
    	z-index:2;
    }
    #main
    {
    	background-color:#3F0;
    	position:fixed;
    	height:513px;
    	width:769px;
    	margin:auto;
    	top:255px;
    	left:256px; 
    	right:0;
    	z-index:3;
    }
    1) overflow-x:auto;

    2) word-wrap:break-word;

    Edited:

    you should really never use position:fixed unless you want something staying on the same place as you scroll down the page.

    Edited:

    my screen height is too small and doesn't make up the whole page.

    Reply With Quote Edit / Delete Windows 7 United States Show Events Agree Agree x 1 (list)

  12. Post #132
    OFWGKTA
    Liber's Avatar
    July 2005
    5,376 Posts
    you should really never use position:fixed unless you want something staying on the same place as you scroll down the page.

    Edited:

    my screen height is too small and doesn't make up the whole page.

    1. yeah thats what I want
    2. Dunno what to do with this. Your window is really small? I'm working with a 1024 x 768 default, since 800*600 is too small to work with.

    Edited:

    also, what method do you suggest when putting Blog, Music and Contact on the very left above each other?
    Reply With Quote Edit / Delete Windows 7 Denmark Show Events

  13. Post #133
    TheBigS's Avatar
    April 2010
    411 Posts
    Let's talk about Responsive Web Design.

    Obviously mobile devices are getting more and more popular, so my thinking is that I need to wrap (no pun intended) my head around fluid-grid systems and frameworks that will let me start to design for websites that adapt themselves to look good in any device.

    Been doing some reading this morning and came across a list of a bunch of responsive web design templates and frameworks at http://designmodo.com/responsive-templates-frameworks, but I'm curious to know if any of you who have experience in designing responsive websites have a personal favorite, and if so, why?

    Right now, I'm looking into the "Skeleton" framework just because I've seen several developers use it in their websites. Curious to hear other people's input on this!
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  14. Post #134
    lkymky's Avatar
    December 2007
    500 Posts
    gametracker's server status widget is an image... im assuming this is done with PHP... but how...?
    Can I get an answer? :C
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  15. Post #135
    Upload Images
    kragmars102's Avatar
    April 2011
    672 Posts
    I'm fairly sure they use PHP to get the server's statistics then take that data an create in image through PHP. that's why the image source is someimage.php and not someimage.jpg
    Reply With Quote Edit / Delete Windows 7 Australia Show Events

  16. Post #136
    secretly a furry
    Jelly's Avatar
    April 2011
    1,886 Posts
    Reply With Quote Edit / Delete Windows 7 Australia Show Events

  17. Post #137
    Upload Images
    kragmars102's Avatar
    April 2011
    672 Posts
    Code:
      function checkForUrls($body) {
        $reg_exUrl = '/(http:|https:|ftp:|ftps:)\/\/[a-z0-9A-Z.]+(?(?=[\/])(.*))/';
        preg_match_all($reg_exUrl, $body, $matches);
        $usedPatterns = array();
        foreach($matches[0] as $pattern){
          if(!array_key_exists($pattern, $usedPatterns)){
            $usedPatterns[$pattern] = true;
    		$img['exp'] = explode('/',$pattern);
    		$img['len'] = count($img['exp']);
    		$img['ext'] = $img['exp'][($img['len']-1)];
    		$img['ext'] = explode('.',$img['ext']);
    		if(in_array($img['ext'][1],array('jpg','jpeg','png','gif'))) {
    		  $body = str_replace($pattern, "<img class='fromlink' width='520' src='".$pattern."' title='".$pattern."'/><span class='_src'><b>source: </b><a href=".$pattern.">{$pattern}</a>", $body);
    		} else {
              $body = str_replace($pattern, "<a href=".$pattern.">{$pattern}</a>", $body);
    		}
          }
        }
    	return $body;
      }
    The above takes urls in normal test for e.g. "This is some test with a link to google http://google.com" and it would turn it into a link. this works, for unlimited amount of links. However when it comes to using links such as: http://ezyimg.info/cdn/ECIJF7QX.jpg it works, but when there is multiple links such as http://ezyimg.info/cdn/ECIJF7QX.jpg http://ezyimg.info/cdn/BI9PEPUM.jpg the result is as followed:

    Code:
    <a href="http://ezyimg.info/cdn/ECIJF7QX.jpg" "" http:="" ezyimg.info="" cdn="" xhgbdz7u.jpg="">http://ezyimg.info/cdn/ECIJF7QX.jpg or http://ezyimg.info/cdn/XHGBDZ7U.jpg</a>

    SOLVED.
    Reply With Quote Edit / Delete Windows 7 Australia Show Events

  18. Post #138
    Sprite's Avatar
    October 2011
    294 Posts
    Probably better to be a freelancing web designer rather than a hourlyrate web designer.

    Fuck! :D
    Found my ass in a job where I'm paid $12 an hour to create website designs -_-'
    I'm not even front end savvy

    Opinions on "freelancing vs hourly rate"

    I'm thinking freelancing... considering it pays better
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  19. Post #139
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    you could earn $12 an hour working at mcdonalds

    Edited:

    see this is why all you americans bitch about being the 99% - you work for pennies
    Reply With Quote Edit / Delete Mac Australia Show Events Agree Agree x 1 (list)

  20. Post #140
    secretly a furry
    Jelly's Avatar
    April 2011
    1,886 Posts
    you could earn $12 an hour working at mcdonalds

    Edited:

    see this is why all you americans bitch about being the 99% - you work for pennies
    Yeah, that's the Australian McDonald's wage it's something like $8 an hour for the American McDonald's.
    Reply With Quote Edit / Delete Linux Australia Show Events

  21. Post #141
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    $12 is still shit, web development is way more than only 1.5x classier than maccas
    Reply With Quote Edit / Delete Mac Australia Show Events

  22. Post #142
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    $12 is still shit, web development is way more than only 1.5x classier than maccas
    so $18 / hour?
    Reply With Quote Edit / Delete Windows 7 United States Show Events Zing Zing x 1 (list)

  23. Post #143
    Sprite's Avatar
    October 2011
    294 Posts
    Dear Mac People... Do you see what I see?
    For some reason the "As Recommended By:" box is not appearing on my co-workers' mac-laptops.
    (but it is on my mac and my PC)
    This link ( http://myproviderwebcapital.com/heal...tal-financing/ ) should look similar to this image
    http://i.imgur.com/JiH5Q.png

    I'm working an internship... (one I actually asked to work for free)
    I'm not bitching about being the 99%. That's why I'm trying hard to make innovations that make life easier for all.

    I've worked for $18 an hour before.
    Contract work.
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  24. Post #144
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    so $18 / hour?
    this dude's getting paid $12 an hour to do web development. working at mcdonalds in america will get you like $8 an hour. $12 = $8 * 1.5
    Reply With Quote Edit / Delete Mac Australia Show Events

  25. Post #145
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    this dude's getting paid $12 an hour to do web development. working at mcdonalds in america will get you like $8 an hour. $12 = $8 * 1.5
    oh... fuck he makes web developers look bad and low waged job.

    Edited:

    oh and did you know it's harder to get a job at mcdonalds now than getting into harvard? (united states)
    Reply With Quote Edit / Delete Windows 7 United States Show Events Disagree Disagree x 1 (list)

  26. Post #146
    kingzl3y's Avatar
    December 2008
    253 Posts
    Anyone have any extensive knowledge on .htaccess?

    I've got a rule set up which moves all non www. traffic to www.domain.com (google.com > www.google.com)
    Is there anyway I can insert an exception? I.e. if the url is domain.com/blog/wp-admin/* it won't force it to redirect to the www. version?

    I'm using a shared SSL certificate, and I've managed to get it working but only when the url is non-www. But because I've got a rule which redirects all non www. to www. it fucks the entire thing up.

    This is the snippet I'm using in my wp-config, it might make more sense.
    Code:
    define('WP_SITEURL', 'https://domain.ssldomain.com/blog');
    define( 'WP_CONTENT_URL', 'http://www.domain.com/blog/wp-content');
    Reply With Quote Edit / Delete Windows 7 Show Events

  27. Post #147
    Gold Member
    jaybuz's Avatar
    May 2006
    5,466 Posts
    Remove the www rule. It's pointless and makes your url longer.
    Reply With Quote Edit / Delete Windows 7 United Kingdom Show Events Dumb Dumb x 2 (list)

  28. Post #148
    kingzl3y's Avatar
    December 2008
    253 Posts
    Remove the www rule. It's pointless and makes your url longer.
    I wish I could, It's not my decision though. The company I work for are really into the www. I have no idea why though. Apparently it's good for seo?
    Reply With Quote Edit / Delete Windows 7 Show Events

  29. Post #149
    zzlawlzz's Avatar
    July 2010
    1,750 Posts
    Anyone have any extensive knowledge on .htaccess?

    I've got a rule set up which moves all non www. traffic to www.domain.com (google.com > www.google.com)
    Is there anyway I can insert an exception? I.e. if the url is domain.com/blog/wp-admin/* it won't force it to redirect to the www. version?

    I'm using a shared SSL certificate, and I've managed to get it working but only when the url is non-www. But because I've got a rule which redirects all non www. to www. it fucks the entire thing up.

    This is the snippet I'm using in my wp-config, it might make more sense.
    Code:
    define('WP_SITEURL', 'https://domain.ssldomain.com/blog');
    define( 'WP_CONTENT_URL', 'http://www.domain.com/blog/wp-content');
    tell them to use dns and do
    www.domain.com
    Record A
    ipadress
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  30. Post #150
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    Remove the www rule. It's pointless and makes your url longer.
    not really.

    i can restrict cookies to www. and then serve static content from a separate content subdomain
    Reply With Quote Edit / Delete Mac Australia Show Events

  31. Post #151
    Gold Member
    deadeye536's Avatar
    February 2008
    1,339 Posts
    Remove the www rule. It's pointless and makes your url longer.
    No, we need more www!
    Reply With Quote Edit / Delete Windows 7 United States Show Events Funny Funny x 1 (list)

  32. Post #152
    Sprite's Avatar
    October 2011
    294 Posts
    Jump into super project with a general data structure & design idea or wait until ever last facet is addressed?

    Edited:

    hosting a medium weight social network?
    Lenode?
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  33. Post #153
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    hosting a medium weight social network?
    what's medium weight
    Reply With Quote Edit / Delete Mac Australia Show Events

  34. Post #154
    Sprite's Avatar
    October 2011
    294 Posts
    1,000,000 users.
    30,000 active every hour

    yeah, sorry, that was very vague of me.

    Edited:

    I'm thinking something like myYearBook (size wise/ activity wise)
    Reply With Quote Edit / Delete Windows 7 United States Show Events Funny Funny x 2 (list)

  35. Post #155
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    lol
    Reply With Quote Edit / Delete Mac Australia Show Events Agree Agree x 2 (list)

  36. Post #156
    secretly a furry
    Jelly's Avatar
    April 2011
    1,886 Posts
    1,000,000 users.
    30,000 active every hour

    yeah, sorry, that was very vague of me.

    Edited:

    I'm thinking something like myYearBook (size wise/ activity wise)
    So you haven't gotten said users yet?
    Reply With Quote Edit / Delete Windows 7 Australia Show Events

  37. Post #157
    Sprite's Avatar
    October 2011
    294 Posts
    No. Not on the new structure.
    I'm really looking for a guide to follow based on traffic and storage.

    That would help the most right now.
    Reply With Quote Edit / Delete Windows 7 United States Show Events

  38. Post #158
    secretly a furry
    Jelly's Avatar
    April 2011
    1,886 Posts
    -snip, he changed his post-
    Reply With Quote Edit / Delete Windows 7 Australia Show Events

  39. Post #159
    RUBY OVERLORD
    swift and shift's Avatar
    November 2011
    2,117 Posts
    ok, what technologies?
    Reply With Quote Edit / Delete Mac Australia Show Events

  40. Post #160
    Sprite's Avatar
    October 2011
    294 Posts
    Then why are you planning on that amount of traffic?
    please excuse my ambition

    The new set up will be more friendly (I'm not talking about k8r >_>)
    Reply With Quote Edit / Delete Windows 7 United States Show Events