- Upvotes Received
- 1
- Posts with Upvotes
- 1
- Upvoting Members
- 1
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
5 Posted Topics
You'r using table, So you don't need left and right align. For div structure you have many way to do that using float, width, text align.
I had same problem and their was Blank Space between foldername. Make sure should be no space in filenames and foldernames.
You are using bootstrap and it has responsive class `class="img-responsive"`. Use it and images will be responsive.
You have to write the code for sublist. Check below css code; #menu li ul { display: none; } #menu li:hover > ul { display: block; margin-left: -2em; }
You can use document ready function. Event is fired when document is loading and once is loaded you can use window load to hide it. jQuery Example : Note : Loader can be image or div; var loader = $("#loader"); $(document).ready(function(){ $(loader).show(); }); $(document).ready(function(){ $(loader).hide(); });
The End.