Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
0% Quality Score
Upvotes Received
0
Posts with Upvotes
0
Upvoting Members
0
Downvotes Received
1
Posts with Downvotes
1
Downvoting Members
1
0 Endorsements
Ranked #25.0K
Ranked #4K
~13.8K People Reached
Favorite Forums

8 Posted Topics

Member Avatar for ryan_vietnow

Hi, The following code will guide you to upload video files. [CODE] //get the size of the video <?php $size=filesize($_FILES['video']['tmp_name']); //compare the size with the maxim size we defined and print error if bigger if ($size > MAX_SIZE*1024) { echo '<h1>You have exceeded the size limit!</h1>'; $errors=1; } //give the …

Member Avatar for mina gharache
2
167
Member Avatar for Makcarov

Hi, Type this command in your CSS [CODE] html { background: url(images/bg.jpg) no-repeat center center fixed; -webkit-background-size: cover; -moz-background-size: cover; -o-background-size: cover; background-size: cover; } [/CODE]

Member Avatar for shironui
0
90
Member Avatar for Violet_82

Hi, a is the anchor tag used for giving external links inside the page.In css it is used for styling the appearance of the link which is given inside the anchor tag. [CODE] < a href="http://www.best-website-designer.com">Click here</a> [/CODE]

Member Avatar for Violet_82
0
12K
Member Avatar for daviddoria

Hi david, Height:101% is meaning less, Height:100% means it will fit the height to full screen.You can use PX in place of % because PX is the best one to use.And maximum try to use height:auto because the div increases its height based on the addition of content to that …

Member Avatar for johnsteve.bravo
0
617
Member Avatar for Dani

Hi, [CODE]<div align="center">[/CODE] align the div to the center position [CODE]<div style="text-align:center"> [/CODE] align the content of the div to center position.

Member Avatar for johnsteve.bravo
0
655
Member Avatar for rusty813

Hi, You had inserted position fixed in the nav class also, so delete that one. [CODE] logo { position: fixed; background-image: url(../images/logo/logo2.png); width: 567px; height: 252px; top: 8px; left: 775px; } .nav { top: 70px; left: -20px; } [/CODE]

Member Avatar for Bestwebdesign
0
182
Member Avatar for andrewliu

Hi, This jquery code will be useful for animating the menu drop down [CODE] $(document).ready(function(){ $("ul.subnav").parent().append("<span></span>"); //Only shows drop down trigger when js is enabled (Adds empty span tag after ul.subnav*) $("ul.topnav li span").click(function() { //When trigger is clicked... //Following events are applied to the subnav itself (moving subnav up …

Member Avatar for Bestwebdesign
0
200
Member Avatar for krusty511

Hi, Using javascript, we can able to print the document.Use this script in a button field [CODE] <button onclick="window.print()">Print this document</button>[/CODE]

Member Avatar for Bestwebdesign
0
105

The End.