Everything posted by Veeramanikandan
-
Bootstrap collapse menu not displaying
hi, the header menu used in nav-bar issue is nav-menu please check it out and nav bar class are missing.
-
Responsive Grid Query
hi,the responsive website are using in width mentioned to %,not use in px,all div mentioned to %,bootstrap method used to website work in responsive.
-
Responsive/Grid layout
Use Twitter Bootstrap for grid layout. This is the best way for display your portfolio in grid layout.
-
Best way of creating a box with an arrow element outside?
Hi, You just create a box using div element. and attach the arrow image where you want add in the div.
-
Responsive contact form
Use "templatemo_417_grill" HTML5 BOOTSTRAP template for responsive contact form.
-
Centering a horizontal css menu
Simply you just create a DIV outside of .menu class. give the name has #nav and width can be 100%. for example: #nav{width: 100%;} .menu{margin:0 auto; padding:0; height:30px; width:75%; display:block; background:url('topMenuImages.png') repeat-x;} .menu li{padding:0; margin:0; list-style:none; display:inline;} .menu li a{float:left; padding-left:15px; display:block; color:rgb(5,5,5); text-decoration:none; font:12px Verdana, Arial, Helvetica, sans-serif; cursor:pointer; background:url('topMenuImages.png') 0px -30px no-repeat;} .menu li a span{line-height:30px; float:left; display:block; padding-right:15px; background:url('topMenuImages.png') 100% -30px no-repeat;} .menu li a:hover{background-position:0px -60px; color:rgb(255,255,255);} .menu li a:hover span{background-position:100% -60px;} .menu li a.active, .menu li a.active:hover{line-height:30px; font:12px Verdana, Arial, Helvetica, sans-serif; background:url('topMenuImages.png') 0px -90px no-repeat; color:rgb(3,1,5);} .menu li a.active span, .menu li a.active:hover span{background:url('topMenuImages.png') 100% -90px no-repeat;} <div id="nav"> <ul class="menu"> <li><a href="http://winemakingemporium.co.uk" class="active"><span>Home</span></a></li> <li><a href="http://winemakingemp.../span></a></li> <li><a href="http://winemakingemp.../span></a></li> <li><a href="http://winemakingemp.../span></a></li> <li><a href="http://winemakingemp.../span></a></li> <li><a href="http://winemakingemp.../span></a></li> <li><a href="http://winemakingemp.../span></a></li> </ul> </div> Use this way you,ll be get the menu place in center position.
- HTML Code for Button
-
Website background in CSS.
css code for set background image: background: url("http://www.example.com/images/image.png") no repeat; this is for firebox and crome. css code for internet explorer background image: background-image: url("http://www.example.com/images/image.png") no repeat;
-
How to remove border on this page
you are use <hr > tag inside the <copyright> tag . If you dont need that just remove from your html code . Or otherwise just use below code in your css file .copyright hr{display: none;}.
-
Difference between width in px and %.
The "px and %" is more are less same. When we are giving the value as "px", its not give proper responsive while redirecying the site into mobile view. But we are giving the "%" value, its given proper responsive.
-
What is considered when creating a responsive web page?
First off all add the meta name , content and device width in you html header file. and then add the @media code into your css file. all values are measured use % symbol. Or otherwise the best and easiest method is use twitter bootstrape package.
-
inline css
There is no problem has been occured. But The problem has been occured when redirecting from your site into mobile version or ipad and laptop. So here you need to create external css file and link to your html file.
-
How to make reaponsive
Just add the meta viewport namr and content inside the header position of html document. the meta tag is given below: <meta name="viewport" content="initial-scale=1, maximum-scale=1"> and add the media query to the css style code @media screen only(max-width 320px) { /* css code for responsive */ }
- code editing
-
img tag or background-image?
Using img is the best method for creating banner image. <ul> <li> <a href="#"><img src="image1.png" alt=""></a> </li> <li> <a href="#"><img src="image2.png" alt=""></a> </li> </ul>
-
Links on Images?
try this code for linking the slide shoe images. <div ><a href="#"><span class=".mc-image"></a></div>
-
Table Font Issues
try this code for table font family table > tr > td { font-family:verdana;}
- Media Query
-
Grid Systems & Boxes ?
The grid system containing bunch of boxes. All boxes having particular pixel values or percentage values. That measured values can differed from screnn size. the grid system is the most important one of the responsive site.
-
Responsive Opinions
Am Not using Bootstrap but rather than using html and css only for creating responsive site. First of all add the meta viewportname and content inside the header position of html document. the mata code is given below: <meta name="viewport" content="width=device-width"> After that creating document asusual manner. And then add the media query into the css style sheet. the media query is given below: @media screen and (max-device-width 480px) { /* css code for responsive */ } If you want change the device width size based on your device screen size.
-
Problems using HTML5 and CSS3 to create button
html code for button link as given below: <a href="#"><input type="button" name="button" value="submit"></a> css code for button: input { border:2px solid #000; background-color:#0099ff; width:30px; }
-
nav menu hover border
Try this below css code to your navigation menu for border bottom. .nav > ul > li:hover >a, .nav > ul > li:hover > ul > li > a { border-bottom: 3px solid rgba(255,255,255,1); }
-
how to make the last navigation to be on the right?
.nav ul li:last-child{right:0;} or .nav ul li:last-child{float:right;}
-
Embeding YouTube video - what am I doing wrong?
you just select the video embed code from youtube page. and past that code in your page where you want play them. for ex: <iframe width="420" height="315" frameborder="0" allowfullscreen="" src="//www.youtube.com/embed/WLuWWcN5vLM">
-
responsive website
If you want creating responsive website just need html and css code only enough. First of all you have to add the meta viewport name and content inside the header position of html. thats given below: <meta name="viewport" content="width=device-width"> And then add the @media query in your css style sheet. that is given below: @media screen and (max-device-width 480px) { /* css code*/ } Most probably use the width size "%" instead of "px".