You are viewing our Forum Archives. To view or take place in current topics click here.
#11. Posted:
Puhny
  • Ladder Climber
Status: Offline
Joined: Nov 24, 201112Year Member
Posts: 322
Reputation Power: 12
Status: Offline
Joined: Nov 24, 201112Year Member
Posts: 322
Reputation Power: 12
Its good for a beginner, keep it up man
#12. Posted:
Z61
  • TTG Fanatic
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
I was doing something like this, the ability to share programs and items, I forgot about it and deleted the source :/ I may restart mine sometime.
#13. Posted:
PoisonOak
  • Resident Elite
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
Z61 wrote I was doing something like this, the ability to share programs and items, I forgot about it and deleted the source :/ I may restart mine sometime.


I think it will be great for programmers to show off their work and get ideas from other users. I doubt my website will even make it anywhere, so restarting it would be a good idea.
#14. Posted:
Z61
  • TTG Fanatic
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
PoisonOak wrote
Z61 wrote I was doing something like this, the ability to share programs and items, I forgot about it and deleted the source :/ I may restart mine sometime.


I think it will be great for programmers to show off their work and get ideas from other users. I doubt my website will even make it anywhere, so restarting it would be a good idea.

well I may make my project open source and let it be publicly managed so others can work on it and use it aswell.
#15. Posted:
PoisonOak
  • Resident Elite
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
Z61 wrote
PoisonOak wrote
Z61 wrote I was doing something like this, the ability to share programs and items, I forgot about it and deleted the source :/ I may restart mine sometime.


I think it will be great for programmers to show off their work and get ideas from other users. I doubt my website will even make it anywhere, so restarting it would be a good idea.

well I may make my project open source and let it be publicly managed so others can work on it and use it aswell.


Well i would love to take a look at it if you go through with it.
#16. Posted:
Z61
  • V5 Launch
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
Status: Offline
Joined: Apr 16, 201014Year Member
Posts: 4,309
Reputation Power: 179
PoisonOak wrote
Z61 wrote
PoisonOak wrote
Z61 wrote I was doing something like this, the ability to share programs and items, I forgot about it and deleted the source :/ I may restart mine sometime.


I think it will be great for programmers to show off their work and get ideas from other users. I doubt my website will even make it anywhere, so restarting it would be a good idea.

well I may make my project open source and let it be publicly managed so others can work on it and use it aswell.


Well i would love to take a look at it if you go through with it.

Well that would be cool.
#17. Posted:
5FDP_Jekyll
  • TTG Addict
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
Status: Offline
Joined: May 27, 201113Year Member
Posts: 2,048
Reputation Power: 100
PoisonOak wrote
Puddle_Of_Mudd wrote It looks pretty good to be quite honest. However your home page must be index.html and also the i must be lowercase in order for the site to read it properly..


Thanks for the feedback, and i had no idea it needed to be named that, im still getting used to HTML and CSS. :b thanks for the help, it's appreciated.
Yeah man no problem. I mainly found it out though i knew it before hand when i put my website up with a free domain as i had it Index.html and it wasn't working so i changed it to index.html and it started to work perfectly.
#18. Posted:
-CJHaCKerZz-
  • Resident Elite
Status: Offline
Joined: Nov 05, 201112Year Member
Posts: 232
Reputation Power: 11
Status: Offline
Joined: Nov 05, 201112Year Member
Posts: 232
Reputation Power: 11
They look quite nice.
But you should really think about designing header and doing what most (quite alot) people do which is design a header and do:


<ul id="#top">
   <li><a href="#">Home</a></li>
   <li><a href="#">Forum</a></li>
   <li><a href="#">Downloads</a></li>
</ul>



^That in HTML and then in CSS:

#top {
    width: 1024px;
    height: 240px;
    background: url('top.png');
    position: relative;
    left: 22%;
}


But here's my only tips:
1) Never (EVER) position stuff with px (pixels), use %. If a screen is: 1024 x 768 and you do:
left: 200px;
it will really look bad on a screen which is 500 x 400. Where as % goes from the relative size of the screen.

Anyways I wrote that out coz im bored,
but yeah nice sites,
PS: You said you know HTML & CSS, you need to know php to do login and register............

PS@ As you know if you have any difficulty just pm people like me or make a thread.
#19. Posted:
PoisonOak
  • Resident Elite
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
Status: Offline
Joined: Mar 29, 201212Year Member
Posts: 248
Reputation Power: 11
-CJHaCKerZz- wrote They look quite nice.
But you should really think about designing header and doing what most (quite alot) people do which is design a header and do:


<ul id="#top">
   <li><a href="#">Home</a></li>
   <li><a href="#">Forum</a></li>
   <li><a href="#">Downloads</a></li>
</ul>



^That in HTML and then in CSS:

#top {
    width: 1024px;
    height: 240px;
    background: url('top.png');
    position: relative;
    left: 22%;
}


But here's my only tips:
1) Never (EVER) position stuff with px (pixels), use %. If a screen is: 1024 x 768 and you do:
left: 200px;
it will really look bad on a screen which is 500 x 400. Where as % goes from the relative size of the screen.

Anyways I wrote that out coz im bored,
but yeah nice sites,
PS: You said you know HTML & CSS, you need to know php to do login and register............

PS@ As you know if you have any difficulty just pm people like me or make a thread.


Thanks for the suggestions and feedback, and i'm already looking into php, i think i could learn some it within a couple months . And yeah i found out not to do it in pixels because then the page wouldn't scroll.
#20. Posted:
-CJHaCKerZz-
  • Resident Elite
Status: Offline
Joined: Nov 05, 201112Year Member
Posts: 232
Reputation Power: 11
Status: Offline
Joined: Nov 05, 201112Year Member
Posts: 232
Reputation Power: 11
Here's my last tip:
Start aligning, The content should start on the 'x' axis relative to other objects.
And keep pages consistent.

Anyways if you need any help PM me.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.