I'm new here. created a profile to get some help with an university project!
I've to make a product, which is a website! I have designed it and everything in photoshop, which i'm quite good at . but oh my gosh, coding? I need help. I don't know how to make the text do what i want it to do! lol!
somebody want to help me, please? we can make a deal i make some photoshop work for you or illustrator then (: I am a quite creative girl at this point and studied this too.
I designed the homepage so far and tried coded it, but it's not the same 100% and i think i'm using DIV's wrong :/
here's the layout (:
add me on msn if you are kind to help!
Hello JulieKemer,
This doesn't look overly complicated and you should be able to get some help here. We are limited in how much we can do for you since it is a project for a class -
Quote:
1.5) No homework assignments - Do not post your entire homework assignment and request that other members do it for you. This is considered cheating, and your thread may even be used by your school to prove your guilt. Now, you may ask for advice or help on a specific aspect of your assignment that you're having trouble with. Use common sense as far as what's acceptable in terms of soliciting help with homework assignments.
Can you post the code you've already got? A link to the test site is always best since there are images we wouldn't have otherwise.
agreed, this is great design. love it. you might want to get a little more detailed with what youve got/tried and need help with. you might get lucky and get some help here for free. ive been reading here occasionally in recent past and it seems like a helpful community. ive searched a few good solutions on these forums.
I have big problems with the footer, dunno how to make it stick to the bottom beneath the rest :@
So far the footer is now obviously beneath what you can see in the browser and overlaps the other (wrapper thingy) content if the screen/browser window is small. and zoom also messes up..
dunno i have done, to be honest lol..
but I have uploaded the html, css and all the images to a zip
would love it if somebody would give some feedback and help with the footer!
and btw, i don't know why i am using both class and div? my CSS is full of definitions to the front page div's, which will be different on other pages. so what should i do when making the other pages? make another CSS?
Hello JulieKemer,
This doesn't look overly complicated and you should be able to get some help here. We are limited in how much we can do for you since it is a project for a class -
Can you post the code you've already got? A link to the test site is always best since there are images we wouldn't have otherwise.
Thanks for letting me know, but I have asked my teacher and he said I can get all the help i can get
I guess someone helped you write the code so far, because if you knew to use absolute positioning, you would already know what the difference is between a DIV and a Class...so anyway what exactly are you looking to do? If you want to post one problem at a time, I and I'm sure others on here would be glad to help.
You asked if you would need a new CSS for each new page. I can hopefully explain a little that might help you out.
CSS means Cascading Style Sheets - and the Cascading part means that you define one style and it can govern the look of a majority of elements, and then you get more specific as you go along - the elements will inherit the original style and then the specific styles get applied. So for instance if you wanted some large green buttons and some small green buttons, you could color all buttons green, then have more specific styles as you need them to make the actual sizes of the buttons. But you don't need to say green in every style, if you know what I mean. So you define the broader styles and then get down to the specifics.
So you might need new styles for each page, but you should be able to get most of them done with a minimum of styles. So for instance on line 80 you have the dimensions and position of the logo, then after that you have specific styles for the rollover image for when you hover over the logo. You didn't need all the original styles on #logo:hover because you already had them on #logo.
You said you are having problems with getting the footer to stick under the rest - but it looks alright in the files you sent. How did you want it to look?
Users who have thanked SpaceNinja151 for this post:
I will try shorten up my codes then if I don't have to repeat i.e. in logo:hover
how about my usage of div in div's? is that a proper way to do it? I feel like I have used DIV's everywhere for everything
are you sure the footer is right? it is just placed under the scrool bar, so if u make your browser very small, and scroll then you wont see more content, but only the scroll bar
i guess i didn't use the positioning correctly. Hmm, any thoughts?
Just a couple of comments. No you are not using too many divs. If it was an HTML5 page that would be the case, but for the XHTML type you are using it is not best proactice, but still acceptable.
The biggest problems I see sort term and especially long term is how you are positioning element. Using position:absolute is for extreme situations and special effects, using it for general positioning will make it very difficult to maintain or change the page.
Positioning should be set using a combination of natural listing position, floats and margins.
The bit about collect way to center is is incorrect an will not work except in ver specific situations. The correct way to center a div in its container is to specify a width and margin:auto that will center the div and keep it centered if the page size or resolurion changes.
I'm not sure what you want with the footer. If you want it to be at the bottom of the page content then just list it as the last element. If you want it at the bottom of the screen and always visible, then use position:fixed instead of position:absolute.
Just a couple of comments. No you are not using too many divs. If it was an HTML5 page that would be the case, but for the XHTML type you are using it is not best proactice, but still acceptable.
The biggest problems I see sort term and especially long term is how you are positioning element. Using position:absolute is for extreme situations and special effects, using it for general positioning will make it very difficult to maintain or change the page.
Positioning should be set using a combination of natural listing position, floats and margins.
The bit about collect way to center is is incorrect an will not work except in ver specific situations. The correct way to center a div in its container is to specify a width and margin:auto that will center the div and keep it centered if the page size or resolurion changes.
I'm not sure what you want with the footer. If you want it to be at the bottom of the page content then just list it as the last element. If you want it at the bottom of the screen and always visible, then use position:fixed instead of position:absolute.
I want the footer to be sticked, how should I exactly code that - putting it in the end? hmm..
Is it bad making the website like this with all the divs and position: absolute? i dont know how to code it otherwise hmm.. we won't be updating the site really as it is only for a short term anniversary
If you just want it on the end of the page then just make it the last element before the </body> If you want it set to the bottom of the window and to stay ther when the page is scrolled then use:
As for the absolute positioned divs; this is just a one off so doing it that way will work. If you are going to do more in the future you need to learn CSS and HTML, and one of the best site to work through all this stuff is http://www.w3schools.com/