Jump to content

webdesign sample


sikiro

Recommended Posts


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

hey guys just starting off with learning how to use html and css3 what do you guys think of this so far and wat tips can you offer. i know the images provided are not my own they are placeholders.

 

http://shiftro.com

 

please rate it and also if you have good html knowlage please share your wisdom with me i want to learn how to position everything corectly since it seems to be my biggest issue.

 

add me on skype or shoot me a pm if you would like to offer your help. pm me for info.

thank you.

Edited by sikiro
  • Upvote 1
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

I've been in a web industry and yet still a student. Good to know you want to learn HTML and CSS.

 

1. As a web developer the first thing you must do is to create a wrapper that will center the whole website so that even the user zoom-in or zoom-out the webpage it will not mess up. In your case try to zoom out your webpage and the background will divided into chunks although your web contents are centered.

2. I saw your cascading style sheets here http://shiftro.com/styles.css on the html style why don't you use no-repeat for the background so that it will not be divided in to chunks when zoomed out. On the body part, why you use margin: 0 0; where you can actually put margin: 0; and the rest are good.

 

But i will credit your css because you consider cross-browser compatibility codes. Anyway since you are just starting off with web development. I will assume this is a good start. Keep up the good work. /no1

  • Upvote 2
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

thank you for the feedback my biguest issue right now is moving things arround the main content box you see there slightly down and also add more content boxes but the issue i run into everytime is that as soon as i position it when something gets added to one all of them shift or move.

 

 

EDIT: i managed to fix some of my issues with adding content boxes but i still cant figure out how to prevent it from shifting when zooming in or out.

Edited by sikiro
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

thank you for the feedback my biguest issue right now is moving things arround the main content box you see there slightly down and also add more content boxes but the issue i run into everytime is that as soon as i position it when something gets added to one all of them shift or move.

 

 

EDIT: i managed to fix some of my issues with adding content boxes but i still cant figure out how to prevent it from shifting when zooming in or out.

Why don't you use no-repeat on your background so that it will not divide into chunks. Regarding the shifting it's fixed already i guess. lol. try to use no-repeat and i will check again :ani_swt3:

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  17
  • Topics Per Day:  0.00
  • Content Count:  133
  • Reputation:   14
  • Joined:  12/23/11
  • Last Seen:  

I think you should put background-size: 100% 100% to the body.

 

And then as for containers, this is what I usually do:

 

<div id="container" style="width: 1000px; margin: 0 auto;">

 <div id="left" style="width: 200px; float: left;">lkasdjalksdjaklsd</div>

 <div id="right" style="width: 200px; float: right;">lkasjdlkasjdqwidc</div>

 

<div id="center_contentbox" style="width: 580px; margin: 0 auto;">

alksdaklsjdlk

</div>

</div>

 

That's my suggestion for a 3-column design :D

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

I will look into that  for background  its a small image that needs to repeat in order to fill the page also the zoom issue I fixed nut its back :/

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

I will look into that  for background  its a small image that needs to repeat in order to fill the page also the zoom issue I fixed nut its back :/

Re-size the image :) I checked it again and the center content alignment is doomed. Why not use a wrapper class then put all your contents inside it? So the CSS would be probably like this :

 

body { margin: 0; padding: 0; }

.wrapper { width: 1000px; margin: 0 auto; } 

 

So that when the webpage is zoomed out the whole webpage will stretch :)

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

yep that fixed the zoom error i had now after aplying that right box shifted down

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

yep that fixed the zoom error i had now after aplying that right box shifted down

Great job! You did it well /no1

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  16
  • Topics Per Day:  0.00
  • Content Count:  171
  • Reputation:   15
  • Joined:  01/26/12
  • Last Seen:  

thanks but if you look closely one of the content boxes the one on the right has shifted down.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  50
  • Topics Per Day:  0.01
  • Content Count:  1702
  • Reputation:   238
  • Joined:  09/05/12
  • Last Seen:  

thanks but if you look closely one of the content boxes the one on the right has shifted down.

You did it well /no1

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • Create New...