[QUOTE=JSharpe;22232992]
Also regarding CSS, should I be doing the CSS and the HTML at the same time? As right now I make a HTML file, do all the editing to it, adding <style> here and there to get it how I want it to be, then move all the <styles> into a CSS file. Is it a silly way to do it? I'm using np++.[/QUOTE]
I keep 'em separate, makes index.php much much shorter and less messy.
[QUOTE=Crhem van der B;22235649]I keep 'em separate, makes index.php much much shorter and less messy.[/QUOTE]
He moves the style stuff into a CSS file when finished. 1x Bad Reading
Any ideas of what I should put on my home page to make it a little more content-filled? Because most of the content is on the other pages.
[url]www.nullular.com[/url]
[QUOTE=nullsquared;22243418]Any ideas of what I should put on my home page to make it a little more content-filled? Because most of the content is on the other pages.
[url]www.nullular.com[/url][/QUOTE]Some right padding.
[IMG]http://dl.dropbox.com/u/1439918/Pics/2010-05-29_1838.png[/IMG]
[editline]06:38PM[/editline]
The design looks pretty cool now too.
I'd remove the products page and combine it with the home page.
[QUOTE=KSI;22243427]Some right padding.[/QUOTE]
Hm, good point. I actually have padding, but those divs are floating and the image is too big. I changed it, how does it look?
[editline]07:26PM[/editline]
[QUOTE=jaybuz;22244370]I'd remove the products page and combine it with the home page.[/QUOTE]
I think I'll do something like that, but I'm not going to completely remove the products page because later on there'll be more products, and I don't want all of them on the home page.
[QUOTE=Hexxeh;22235031]If he wants to point to my servers, I'd set that up.
Threads: facepun.ch/t/245135
Posts: facepun.ch/p/245256[/QUOTE]
If you're using PHP, use this class to shorten those IDs:
[php]
class BaseIntEncoder {
const codeset = "abcdefghijklmnopqrstuvwxyzABCDEFGHIJKLMNOPQRSTUVWXYZ1234567890-_.";
static function encode($n){
$base = strlen(self::codeset);
$converted = '';
while ($n > 0) {
$converted = substr(self::codeset, bcmod($n,$base), 1) . $converted;
$n = self::bcFloor(bcdiv($n, $base));
}
return $converted ;
}
static function decode($code){
$base = strlen(self::codeset);
$c = '0';
for ($i = strlen($code); $i; $i--) {
$c = bcadd($c,bcmul(strpos(self::codeset, substr($code, (-1 * ( $i - strlen($code) )),1))
,bcpow($base,$i-1)));
}
return bcmul($c, 1, 0);
}
static private function bcFloor($x)
{
return bcmul($x, '1', 0);
}
static private function bcCeil($x)
{
$floor = bcFloor($x);
return bcadd($floor, ceil(bcsub($x, $floor)));
}
static private function bcRound($x)
{
$floor = bcFloor($x);
return bcadd($floor, round(bcsub($x, $floor)));
}
}
[/php]
[QUOTE=nullsquared;22244596]Hm, good point. I actually have padding, but those divs are floating and the image is too big. I changed it, how does it look?
[editline]07:26PM[/editline]
I think I'll do something like that, but I'm not going to completely remove the products page because later on there'll be more products, and I don't want all of them on the home page.[/QUOTE]Looks good, needs more content though.
[QUOTE=KSI;22245117]Looks good, needs more content though.[/QUOTE]
Right, that's kind of what I'm asking :v: Do you guys have any idea for what other content I can put on the home page? I updated it again and put my product logos on the front, tell me if it looks any better ([url]www.nullular.com[/url] again)
[QUOTE=nick10510;22245277]Better?
[img_thumb]http://bellminator.com/images/uhh.png[/img_thumb][/QUOTE]
Please tell me those colors are a result of the screenshot.
I'm working on a directory listing script, just for testing purposes (and to look good): [url]http://jmazouri.info/pubfiles/[/url]
[QUOTE=Marlamin;22245593]Please tell me those colors are a result of the screenshot.[/QUOTE]
[url]http://bellminator.com[/url]
I'm sorry nick but your design just doesn't flow, the colours are bad, the fonts are unfitting and drop shadows don't really do it any good as it's too spaced out, you have very little content to be honest so why are you spreading it out so much, you're wasting so much space which is unneeded.
[QUOTE=EDDY TT;22246026]I'm sorry nick but your design just doesn't flow, the colours are bad, the fonts are unfitting and drop shadows don't really do it any good as it's too spaced out, you have very little content to be honest so why are you spreading it out so much, you're wasting so much space which is unneeded.[/QUOTE]
Chances are you saw it while I was fucking around with the colors.
As for drop shadows and -some wasted space-, they have been removed.
How do I make it so that, for example, I have the background and then I have the actual functioning part of the website, but that functioning part, has a drop shadow on the background. Do I make the drop shadow in Photoshop and get it into position with CSS or is there a different and simpler approach?
There is a box-shadow function in CSS3, but, obviously, shitty IE won't support it, so don't use it unless you don't give a snitch about IE users.
You can find more info about it here:
[url]http://www.css3.info/preview/box-shadow/[/url]
Well, it's a portfolio so employers might be using IE. I could make a specific IE half assed drop shadow, and for the real browsers, I'd use that function.
You can open [url]www.aistudija.lt[/url] with IE, you'll see how "half-assed-IE-drop-shadow" looks like. Then open with a real browser and you'll see how it suppose to look.
Just use CSS3 for styling. It's too bad if someone is using IE, the user experience isn't harmed anyway.
[QUOTE=jaybuz;22257089]Just use CSS3 for styling. It's too bad if someone is using IE, the user experience isn't harmed anyway.[/QUOTE]
"Oh well" isn't really how it works in the real world unless you want to lose a major percentage of your viewers/customers.
[editline]10:36AM[/editline]
Testing hotlinking:
[img]http://nullular.com/images/grapher/home4.png[/img]
[url]http://nullular.com/gridworld2/GridWorld2.zip[/url]
Good, it doesn't work :v:
[QUOTE=nullsquared;22257407]"Oh well" isn't really how it works in the real world unless you want to lose a major percentage of your viewers/customers.
[editline]10:36AM[/editline]
Testing hotlinking:
[img]http://nullular.com/images/grapher/home4.png[/img]
[url]http://nullular.com/gridworld2/GridWorld2.zip[/url]
Good, it doesn't work :v:[/QUOTE]
FYI your 403 page has broken images.
[QUOTE=jmazouri;22257901]FYI your 403 page has broken images.[/QUOTE]
I know, I have to fix that. Thanks for reminding me though.
[QUOTE=nullsquared;22257407]"Oh well" isn't really how it works in the real world unless you want to lose a major percentage of your viewers/customers.[/QUOTE]
How will you lose viewers anyway? Will they leave because the container doesn't have a shadow on it?
Think about it..
Null, I broke it:
[url]http://nullular.com/gridworld2/home.php[/url]
[QUOTE=andersonmat;22258566]Null, I broke it:
[url]http://nullular.com/gridworld2/home.php[/url][/QUOTE]
You caught it while I was updating :v: Fixed, try again :smug:
[editline]12:09PM[/editline]
[QUOTE=jaybuz;22258103]How will you lose viewers anyway? Will they leave because the container doesn't have a shadow on it?
Think about it..[/QUOTE]
Yeah, if it doesn't look good, people are really only 1 click away from leaving your site.
[editline]12:24PM[/editline]
Question: Should I use "our" when describing stuff ("our solution to all your graphing needs") even though my portfolio and what-not makes it obvious that I'm one person, or should I use "my"?
[QUOTE=nullsquared;22258908]You caught it while I was updating :v: Fixed, try again :smug:
[editline]12:09PM[/editline]
Yeah, if it doesn't look good, people are really only 1 click away from leaving your site.
[editline]12:24PM[/editline]
Question: Should I use "our" when describing stuff ("our solution to all your graphing needs") even though my portfolio and what-not makes it obvious that I'm one person, or should I use "my"?[/QUOTE]
"our" definitely sounds better.
Our makes you sound less of a dick to be honest.
My is very direct, sometimes too direct.
Sorry, you need to Log In to post a reply to this thread.