- Upvotes Received
- 0
- Posts with Upvotes
- 0
- Upvoting Members
- 0
- Downvotes Received
- 1
- Posts with Downvotes
- 1
- Downvoting Members
- 1
8 Posted Topics
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 …
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]
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]
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 …
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.
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]
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 …
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]
The End.
Bestwebdesign