Welcome to the "Web Projects" forums. Before you post, make sure you've selected the correct category based on the size of your project (in US dollars), or whether it is a partnership or "looking for work" request instead. Observe the guidelines for this section:
To all thread starters, check your "pm" box for responses, as that's how bidders will be communicating with you mainly using. You can turn on new pm notification by going to "User CP"-> "Edit Options"-> "Receive Email Notification of New Private Messages".
To respondents, avoid replying to a thread with a short generic response like "pm sent" as much as possible. It is pointless and clutters up the screen.
To respondents, don't reply to a work request with a summary of your resume. If you're not willing to spend the time to at least read the request and respond specifically to the request, then don't reply. The Web Projects forum isn't a place to get your resume/ portfolio posted on as many threads as possible, it's for the direct, human interaction between coder and client. Members who blanket the forums with their resume replies will be treated as spammers and banned.
To all thread starters, please update your thread's prefix to "resolved", when you've found a coder for your project or partnership (or wish to terminate the request). This is so coders don't waste time bidding on an invalid project. To do this, click on the "Edit" button under the first post of the thread, then the "Go Advanced" button. You have 14 days to update your thread's title.
Try to find examples of stuff you like. So say on this site x, I like this and on site y I like this. It will help give someone an idea what you want. Additionally saying what the site is going to be about is important to.
Ok, thanks for all your help so far, The webpage design shold be look proffecional, easy to follow, and clean (it should not be based on dark colors), It should be liquid, meaning that it will fit any resolution....
Maybe it would be best if you type up the code that you want, and we can offer some designs for you (maybe a basic jpeg file from photoshop or GIMP for you open sourcers out there). This would be simliar to http://www.csszengarden.com/
I can design anything, but I need a subject, is where I'm getting at - what if I do a nice pink layout with easter bunnies for a Pantera Fan page?
__________________
// Art is what you can get away with. <-- Andy Warhol
...:.:::: bradyjfrey.com : htmldog : ::::.:...
See, the thing is, If i could come up with the colors and the layout, as you want me to supply, then i wouldnt need to post this....
My truble is That i cant come up with creative webcolors, or layouts....
And yes, If you could come up with a logo, and name, that would be even better (a banner is nice too), cause i cant do anything related to graphics, ohter then Paint
but a theme i like alot is brothercake's:
Maybe somebody can come up to a design similar to his homepage, and or his udm page:
I don't need colors, that's not what I asked -- just give me some basic code that you have as a site idea, then I can do design work for that, and you can build the CSS off my design, like:
Code:
<?xml version="1.0" encoding="ISO-8859-1"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>.:: bobby's world ::.</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<link rel="shortcut icon" href="favicon.ico" />
</head>
<body>
<h1>Welcome to bobby's world!!</h1>
<h3>This site is best viewed in a modern browser</h3>
I'll do all the look design -- color, layout, images -- but you do all the code. I don't want to start with a design that would be too difficult to accomplish, and I don't know what to design for. Your personal webpage? Monkeys? Wal-Mart?
__________________
// Art is what you can get away with. <-- Andy Warhol
...:.:::: bradyjfrey.com : htmldog : ::::.:...
Ok, if you could also design a banner that would be great, ok...(even though I was hoping for a NEW layout, a complete make over of my layout would be even better, THANKS ALOT [soo cool]) the layout is as follows:
var SpeedUp=.1;
var SpeedDown=.01;
var Custom=new fade('Custom');
var li0=new fade('li0')
var li1=new fade('li1')
var li2=new fade('li2')
var li3=new fade('li3')
var li4=new fade('li4')
var IE = document.all?true:false;
var SRC="";
var STYLE="";
var SIZE="";
//////Time
function start(){
var date=new Date();
document.getElementById('time').innerHTML = date.toLocaleTimeString() + " " + date.toLocaleDateString();
setTimeout(start,1000)
}
//////EndTime
//////Cookies
function cookie(name,value)
{ this.name = name;
this.value = value;
this.attributes = new Array();
this.expiresIn = function (days)
{ expiration = new Date();
expiration.setTime(expiration.getTime() + (days*86400000));
this.attributes["expires"] = expiration.toGMTString();
};
this.set = function ()
{ var cookiestr = this.name + "=" + escape(this.value);
for(attr in this.attributes)
{ cookiestr += "; " + attr
if(this.attributes[attr].length > 0)
cookiestr += "=" + this.attributes[attr];
}
document.cookie=cookiestr;
};
this.erase = function()
{ this.expiresIn(-1);
this.set();
delete cookies[this.name];
};
}
function cookieContainer(){
this.add=function (name,value){ this[name]=new cookie(name,value);
};
this.get=function (name)
{ for(o in this)
if(o == name)
return this[o];
return null;
}
var cstr=document.cookie;
var spaces=/\s/gi;
cstr=cstr.replace(spaces,'');
while(cstr.length>0)
{ cequal=cstr.indexOf("=");
if(cequal==-1) cequal=cstr.length;
var name=cstr.substring(0,cequal);
cstr=cstr.substring(cequal+1,cstr.length);
cend=cstr.indexOf(";");
if(cend==-1) cend=cstr.length;
var value=unescape(cstr.substring(0,cend));
cstr=cstr.substring(cend+1,cstr.length);
this.add(name,value);
}
}
var cookies = new cookieContainer();
function AddMyCookie(AName, AValue){
cookies.add(AName, AValue);
cookies[AName].expiresIn(300000);
cookies[AName].set();
}
/////End cookies
//////Change Style
function Change(){
SRC=document.getElementById('CustomOpt').value
SIZE=document.getElementById('size').value
STYLE=document.getElementById('style').value
document.getElementById('CSS').href='JS-CSS/'+SRC+'.css';
document.getElementById('contentSub').style.fontFamily=STYLE;
document.getElementById('contentSub').style.fontSize=SIZE+"px";
Custom.stopFU();
save();
}
function change(){////onload change
document.getElementById('CSS').href='JS-CSS/'+SRC+'.css';
document.getElementById('contentSub').style.fontFamily=STYLE;
document.getElementById('contentSub').style.fontSize=SIZE+"px";
}
function save(){
AddMyCookie('SRC', SRC);
AddMyCookie('SIZE', SIZE);
AddMyCookie('STYLE', STYLE);
}
//////End Style
//////fader OOP
function fade(imgID){
var me=this;
this.i=.3
this.stopFU=function(){me.UD=0;me.fadeDown()}
this.stopFD=function(){me.UD=1;me.fadeUp()}
this.imgId=imgID;
this.fadeUp=function(){
if(me.i<=(.99-SpeedUp) && me.UD==1){
me.i+=SpeedUp
document.getElementById(me.imgId).style.MozOpacity=me.i;
document.getElementById(me.imgId).style.filter='alpha(opacity='+me.i*100+')';
setTimeout(me.fadeUp, 10)
}
else{me.stopFU}
}
this.fadeDown=function(){
if(me.i>=.3 && me.UD==0){
me.i-=SpeedDown;
document.getElementById(me.imgId).style.MozOpacity=me.i;
document.getElementById(me.imgId).style.filter='alpha(opacity='+me.i*100+')';
setTimeout(me.fadeDown, 10);
}
else{me.UD=1}
}
}
/////Stop Fader
/////Function for all onload statements
window.onload=function(){
start();
if(cookies.get('SRC')){SRC=cookies['SRC'].value}
if(cookies.get('SIZE')){SIZE=cookies['SIZE'].value}
if(cookies.get('STYLE')){STYLE=cookies['STYLE'].value}
if(cookies.get('SRC')){change()}
Custom.stopFU();
}
A few things about the layout, IT works best in Mozilla, works fine in IE only that the min hight doesnt work so it looks bad if you have little content, it almost works good in NS, only that the <hr> tag is messed up and the hover menu behaves weird....
A few more things about the target audience, This webpage should be my future WebSite, this site should look profesional, It should be something where I might be able to sell webpages from (I'am trying to start a tiny buisiness like that, but it probalby will only start in two or three years )
Thank you alot....
I was hoping for a basic desing, but what you are offering is much more, and I greatly apreciate that. I do not have a Company Name (Cause i am not creative enought to come up with one other then "MyCompany" , and I do not have a logo and or optional banner.... If you could come up with a color scheme, logo, and company name, It would be very very nice, and much much more then i expected from this thread....
Thanks again.....
The zip file contains my whole project, included is a folder called experiments, you can look into it but all there is in it are incomplete JavaScript's...
You got it, should be a fun little project -- it'd be nice to get back to just straight designing -- I'll fuss around with it this weekend when I have time, but I can't garauntee I'll be done by this weekend -- probably a week from today will give me enough time. Just a cushion, i've got work as well
__________________
// Art is what you can get away with. <-- Andy Warhol
...:.:::: bradyjfrey.com : htmldog : ::::.:...
Thanks alotbutThanks alot, but you really dont have to worry, about getting it finished, cause idont mind if you have it done in a month, I am just glad that you actally will doit, thanks alot