Author Topic: Get ready for a template release  (Read 2118 times)

0 Members and 1 Guest are viewing this topic.

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Get ready for a template release
« on: July 02, 2009, 03:52:04 PM »
I Wanted to create my own and ya here we go

Features:
Style: Professional
Valid: XHTML 1.0 Transitional
Width: 960px
Mods:
Turn off the Lights
License: GNU(AKA. Free)
Other:
Right not its just in beta..... Im looking for some people that will help me find bugs and test this thing out.... if i can get it fixed fully and look great..... i will release it....

Admin Panel:
Looks like default.... Next in line for modding

Browser(s) Tested:
FireFox 3.0.11
IE 8

Browser(s) that have problems rendering the template:
Everything works correctly in FF
IE8 it having some problems... and cant seem to get rid of them

Nice Features:
Clean layout
Custom Starts for rating
youtube downoad link - working on getting this worked into the script... this is just the first stage

« Last Edit: July 02, 2009, 03:59:21 PM by Jeff »

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #1 on: July 02, 2009, 05:23:49 PM »
Cool! I Can't wait! ;D

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Re: Get ready for a template release
« Reply #2 on: July 03, 2009, 04:29:21 AM »
if you guys want a preview just head on over to my site.... its what it looks like

Offline naxtra

  • Full phpd Member
  • ***
  • Posts: 74
  • Karma: 1
    • View Profile
Re: Get ready for a template release
« Reply #3 on: July 03, 2009, 07:53:05 AM »
It's beautiful!! Well job done!

Why'd you remove search bar complately? put it next to submit tab - would look nice

Also I played this video on your site http://mvideos.co.cc/videos.php?id=58#

and where it says.....play this on youtube..I got this link http://www.youtube.com/v/Array

that's the only thing I found right now...will post more if I find more...

but it looks good!!

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Re: Get ready for a template release
« Reply #4 on: July 03, 2009, 01:10:24 PM »
Thank you :-D

Ill see what i can do about the search bar..
and with that video is seems to be the only one thats doing that...(yes i went through every video) lol
not 2 sure why

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #5 on: July 03, 2009, 03:42:20 PM »
Hey,

1) Nice Template
2) I think the YouTube link is doing this: http://www.youtube.com/v/Array
because instead of doing this:
Code: [Select]
<a target="_blank" href="http://www.youtube.com/v/{if $video[video].file eq ""}{$videoid}{else}{$video[video].file}{/if}">Click Here To View At Youtube </a>
You are doing this:
Code: [Select]
<a target="_blank" href="http://www.youtube.com/v/{$video[video].creator}">Click Here To View At Youtube </a>
And "Arrray" is the creator.

or you just did this some reason:
Code: [Select]
<a target="_blank" href="http://www.youtube.com/v/Array">Click Here To View At Youtube </a>
Overall thought great template, clean, easy to read, easy navigation.
But it does need a search bar & the "Details" bar is all the way on the right which looks kind of weird for wide screen.

Just my thought,
-FireDart

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Re: Get ready for a template release
« Reply #6 on: July 03, 2009, 04:18:49 PM »
Ahhhh ok thank you fixed that little bug :-P - but how come it only did it on that one video....

and what im planning on doing is making a second nav bar... but have it with the search in it... kindof like the default template..... and can you post a screenshot of what it looks on a wide screen.... i program on the one i without it becuase the wide screen is at my dads house

Offline naxtra

  • Full phpd Member
  • ***
  • Posts: 74
  • Karma: 1
    • View Profile
Re: Get ready for a template release
« Reply #7 on: July 03, 2009, 06:24:19 PM »
Here Jeff...
this is what FireDart is talking about.....space between the player and the details


Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #8 on: July 03, 2009, 07:55:48 PM »
@naxtra
Thanks for posting that screenshot.

@Jeff
1) The "Click Here To View At YouTube"  & "Click Here To View At Dailymotion" seems to be on all videos not just that one.

2) For your 2 column layout problem try this:
CSS:
Code: [Select]
/*
********************
2 Column Layout
********************
*/
#bodywrapper{
   height: 100%;
   margin: 0px auto;
   margin-top: 10px;
   margin-bottom: 10px;
   width: 960px;
}
#container {
   width: 960px;
}
#main-wrapper {
   display: inline;
   float: left;
   width: 695px;
}
#sidebar-wrapper {
   float: right;
   width: 250px;
}
#content {
   width: 680px;
   margin: 0px auto;
   padding: 5px;
}
#sidebar-content {
   padding: 5px;
}
.clear {
   clear: both;
}
xhtml
Code: [Select]
<!--Start Body Wrapper-->
<div id="bodywrapper">
<!--Start Container-->
<div id="container">
<!--Start Main Wrapper-->
<div id="main-wrapper">
<div id="content">
<!--Start Content-->
Main Content Here
<!--End Content-->
</div>
</div>
<!--End Main Wrapper-->
<!--Start Sidebar Wrapper-->
<div id="sidebar-wrapper">
<div id="sidebar-content">
<!--Start Sidebar Content-->
Sidebar Content Here
<!--End Sidebar Content-->
</div>
</div>
<!--End Sidebar Wrapper-->
</div>
<!--End Container-->
</div>
<!--End Body Wrapper-->
<!--Start Clearer-->
<div class="clear"></div>
<!--End Clearer-->


Also no offense but your code is not xhtml valid, I am sorry but am a little crazy about having clean code ;D. I did see some things that could be causing problems since the code is invalid.

TIP: If you find a problem with something visually it's normally the code reading wrong  ;) or a cross browser issue

One last thing awesome footer ;D:
Quote
Works best with the Firefox web browser, as it has superior support for the web standards which Mvideos utilises. Firefox is free of charge!

« Last Edit: July 03, 2009, 08:10:43 PM by FireDart »

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Re: Get ready for a template release
« Reply #9 on: July 03, 2009, 10:20:31 PM »
@naxtra
Thank you for clearifying that for me :-P

@FireDart
ok thank you very much for that.... ill talk to you some more about this later... but if you want ill send you the sorce if you want to help me orginize it and make it valid.... im still a beginner at this programming stuff :-P so im still learning lol

both of you guys have been a great help.... you will be in the Thanks for page on my website soon

and haha thank you.... i figured anyone who uses firefox and reads the footer would get a kick out of that :-P
« Last Edit: July 03, 2009, 10:26:20 PM by Jeff »

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #10 on: July 03, 2009, 11:04:14 PM »
I will take on the project, need something to do ;D

Just E-Mal it to me at: firedartonline@gmail.com

If it is to big to send make a zip file and upload it to your server, then I will download it.

-FireDart

Offline Jeff

  • Global Moderator
  • Sr phpd Member
  • *****
  • Posts: 359
  • Karma: 5
  • Need help? Feel free to ask.
    • View Profile
Re: Get ready for a template release
« Reply #11 on: July 03, 2009, 11:17:07 PM »
Ill pm you the link in a sec... :-P

Offline naxtra

  • Full phpd Member
  • ***
  • Posts: 74
  • Karma: 1
    • View Profile
Re: Get ready for a template release
« Reply #12 on: July 04, 2009, 12:44:49 AM »
OR you could just increase the width of the video....so widesceen video like youtube....

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #13 on: July 04, 2009, 01:21:36 AM »
Jeff, almost done cleaning up the code. Stop being so modest your a great coder! Most of the problems are from the original code from the Dev Team, no offense guys!

But everything is clean just need to fix a center issues, look:


What is the width of the site? Your using all this padding: -220px; to center the things am having a hard time making them work together. >:( Is it the recommended 960px? or 760px?

Offline FireDart

  • Project Leader
  • Pro Member
  • *****
  • Posts: 405
  • Karma: 4
    • View Profile
    • FireDart
Re: Get ready for a template release
« Reply #14 on: July 04, 2009, 01:44:38 AM »
Sorry it took so long, but it is all done, sent you a Personal Message.

There is one problem that I saw, when you submit a video it does not fill in the info.

Just thought you should know,
-FireDart


EDIT: Also your Beta Download does not work, did you do that on purpose?
« Last Edit: July 04, 2009, 02:04:08 AM by FireDart »