Skip to content
View in the app

A better way to browse. Learn more.

Web Designer Forum

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Veeramanikandan

Members
  • Joined

  • Last visited

Everything posted by Veeramanikandan

  1. hi, the header menu used in nav-bar issue is nav-menu please check it out and nav bar class are missing.
  2. 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.
  3. Use Twitter Bootstrap for grid layout. This is the best way for display your portfolio in grid layout.
  4. Hi, You just create a box using div element. and attach the arrow image where you want add in the div.
  5. Use "templatemo_417_grill" HTML5 BOOTSTRAP template for responsive contact form.
  6. 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.
  7. inside the form you can create the button <form> <input type="button" name="but" value="click me"> </form>
  8. 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;
  9. 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;}.
  10. 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.
  11. 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.
  12. 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.
  13. 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 */ }
  14. Blue fish editor is the best editor for linux
  15. 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>
  16. try this code for linking the slide shoe images. <div ><a href="#"><span class=".mc-image"></a></div>
  17. try this code for table font family table > tr > td { font-family:verdana;}
  18. Veeramanikandan replied to Meh's topic in Frontend
    There is not any restrictions to use size of the device width. If your screen resolution is above 1200px , you can mension the media query @media screen and (min-width 1200px) and (max-width 1400px) { } you can set the with depends upon you screen size.
  19. 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.
  20. 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.
  21. 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; }
  22. 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); }
  23. .nav ul li:last-child{right:0;} or .nav ul li:last-child{float:right;}
  24. 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">
  25. 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".

Account

Navigation

Search

Search

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.