Skip to main content

Home/ Web Development, Design & Programming/ Group items tagged layouts

Rss Feed Group items tagged

Luciano Ferrer

20 Unusual Websites Navigation | AcrisDesign - 0 views

  •  
    "Four weeks earlier we have showcased websites with unusual layout and now we have decided to post some unusual navigation menus for inspiration. Navigation played a vital role in website layout that's why normally we keep navigation on the uppermost section so that it can help navigate your reader. But now we are in creative work and these days designers and front end developers try to stand out of crowd and in this process they experiment with the navigation menu."
Luciano Ferrer

8 Free Placeholder Image Services For Instant Dummy Images - 0 views

  •  
    "When designing websites, images-to-be-used usually doesn't exist at first as it is the layout that matters the most. However, the sizes for the images are usually pre-set and inserting some placeholder images help us better seeing/analyzing the layout. Rather than creating these placeholder images manually, there are free to use services which can automate the process and save us time."
ghostman905

Design your website layout with photoshop - 0 views

  •  
    use photoshop principals to design your web page layout.
Omar Paulo

48 Examples of Excellent Layout in Web Design | Inspiration - 0 views

  •  
    In these days where we stay in front of our computers for hours and hours working, browsing around, reading our stuff and enjoying the wonders of the web, there is something we do really care about, content organization or, if you rather say, a good user experience. There is nothing better than opening a perfectly organized and readable website... a page where the layout invites you to browse the site's content.
sarah ockonor

Brown Wood Design Free Blogger Template - 0 views

  •  
    Blogger Soul Vision Brown Wood Template is very Nice Looking Blogger Layout, come With 2 Columns, Right Sidebar, Grunge, Vector Wood, Brown, Fresh Blue, Web2.0 Inspiration illustration, Black, English Language, Fixed Width, Rounder Corners, Don't Forget to Share it if you like it, It has a cool looking header with search box and feed chicklet, It overall has a very nice layout, Suitable for Grunge blogs, Vector Blogs, Design Blogs or Neutral Blogs.
Jochen Burkhard

Coding Flexible Web Layouts in HTML5 and CSS | Speckyboy Design Magazine - 0 views

  •  
    "Web standards are in evolution and continuing to refine how we structure our content. There are many open source platforms which allow rapid prototyping and development of new features in just a few days. As web developers it can be difficult to keep up with such fast-paced times."
  •  
    Felxible Web-Layouts. C'mon, be flexible...
Anton S.

Easy Display Switch with CSS and jQuery - 0 views

  •  
    "Today, I would like to go over a quick and simple way to allow your users to switch page layouts by using CSS and jQuery. Today's web users expect web pages to be increasingly more interactive. To this end, the ability to change page layouts provides your users with a more immersive experience and allows them to consume information more easily, either with a quick gallery view, or a detailed summary view."
Jochen Burkhard

Designing for the Future with HTML5+CSS3 : Tutorials and Best Practices | DevSnippets - 0 views

  • HTML5 is the next major version of HTML. HTML5 provides some great new features for web designers who love to create readable code and semantically-meaningful layouts. HTML 5 introduces and enhances a wide range of features including: form controls, APIs, dragging and dropping, multimedia, drawing graphics on screen and a lot more.
  •  
    HTML5 is the next major version of HTML. HTML5 provides some great new features for web designers who love to create readable code and semantically-meaningful layouts. HTML 5 introduces and enhances a wide range of features including: form controls, APIs, dragging and dropping, multimedia, drawing graphics on screen and a lot more.
  •  
    HTML5 is the next major version of HTML. HTML5 provides some great new features for web designers who love to create readable code and semantically-meaningful layouts. HTML 5 introduces and enhances a wide range of features including: form controls, APIs, dragging and dropping, multimedia, drawing graphics on screen and a lot more.
Soul Book

CSS techniques I use all the time - 0 views

  • EM calculations Sizing text is always an important part of making a usable design. I start all my CSS files with the following rules: html { font-size:100.01%; } body { font-size:1em; } The explanation for this comes from "CSS: Getting Into Good Coding Habits:" This odd 100.01% value for the font size compensates for several browser bugs. First, setting a default body font size in percent (instead of em) eliminates an IE/Win problem with growing or shrinking fonts out of proportion if they are later set in ems in other elements. Additionally, some versions of Opera will draw a default font-size of 100% too small compared to other browsers. Safari, on the other hand, has a problem with a font-size of 101%. The current "best" suggestion is to use the 100.01% value for this property.
  • I used the following calculation: 14px/16px = .875, 18px/16px = 1.125. So my default text at 1 em would translate to 16px for most users, and my small text I sized at .875em which I can trust to result in 14px for most users, while my large text I sized at 1.125em which I can trust to result in 18px
  • Safe Fluid-width Columns I work with hybrid fluid layouts all the time, usually with max-width set at anywhere from 900 to 1000px. I usually have floated columns with percentage widths, and browsers will calculate these percentage widths to whole pixel values when rendering the columns.
  • ...3 more annotations...
  • A typical problem is the following: when a user has the viewport at a size that makes the outer container 999 pixels wide, if the first column is 60% and the second is 40%, IE 6 will always calculate the two columns as 600 and 400 pixels and as a result, the two will not fit (600+400 = 1 more than 999) and it will drop the second column. This is obviously not intended behavior, and in a world where we still have to use floats for columns (I can't wait for display:table support across all browsers), it's important to work around this problem. I used to give my last column 1 less percent (in this example, it would have 39% instead of 40%, but this would usually result in columns that don't quite fill up the container. Of late I have been giving the last column .4 less percent (in this example, 39.6%), which seems to work perfectly. Browsers will calculate this width and round up, but it will still fit even with an odd container width like 999px and I won't have to worry about dropped columns.
  • Filtering for Old Browsers To be honest, I barely support IE 6 nowadays. If there is something special about my layout that doesn't work in IE 6, I will simply filter it out of the CSS that IE 6 understands
  • Because old browsers like IE 6 don't support the "first child" selector (right caret >), I can do the following to make sure that IE 6 only gets the basic setting and all the new-fangled browsers get the right result: div#container { width:900px; } html>body div#container { width:auto; max-width:900px; } /* This overrides the previous declaration in new browsers only, IE 6 simply ignores it. */
  •  
    Excellent simple collection of CSS tips that are easy to remember and implement. It's an old article, but i think everything is still relevant
Jochen Burkhard

How to Make All Browsers Render HTML5 Mark-up Correctly - Even IE6 | Nettuts+ - 0 views

  •  
    HTML 5 provides some great new features for web designers who want to code readable, semantically-meaningful layouts. However, support for HTML 5 is still evolving, and Internet Explorer is the last to add support. In this tutorial, we'll create a common layout using some of HTML 5's new semantic elements, then use JavaScript and CSS to make our design backwards-compatible with Internet Explorer. Yes, even IE 6.
Alexis Sgavel

25 Examples of Interesting and Beautiful Navigation | Codrops - 0 views

  •  
    Designing the perfect navigation for a website it's one of the main keys to have a good outcome, to have a website that gets users attentions and make them want to browse around to check every little information (tab, image, text, etc) you have there. Navigation menus, schemes, layouts, everything has an important weight and need to be carefully analyzed to form a nice layout. From horizontal sliders to vertical scrolls and menu based navigations, here you will see 25 examples of navigations that will certainly get you inspired.
mikhail-miguel

Yahoo! Search - Mecanismo de busca de web sites, imagens, vídeos e notícias - 0 views

  •  
    A tool for visual layout development of YAML based CSS layouts
mikhail-miguel

On having layout - the concept of hasLayout in IE/Win - 0 views

  •  
    A lot of Internet Explorer's rendering inconsistencies can be fixed by giving an element 'layout'. This leads to a question of why 'hasLayout' can change the rendering of, and the relationships between elements. In this article, the authors focus on some aspects of this complicated matter.
sanjaydixit180

Web Design and Development Company in Bhandup, Mumbai - Pen Mouse Design Tech - 0 views

  •  
    In today's Digital World, it is necessary for every business and professional to have its own website. We will develop Stunning and Professional Website for your Business at affordable rate. We are specialized in Designing and Developing: - Company Websites - Business Websites - Online Stores - Professional Websites - Agency Websites - Personal Websites - Blog Websites First impression is the last impression and we make your First Impression the best one. We at Pen Mouse, Design and Develop Professional Websites for Businesses and Professionals. Why Choose Pen Mouse Design Tech: Because we understand that different businesses needs different types of Website Layouts, fonts and color scheme. We will create a custom website made just for your business. - We are team of creatives and professionals. - We work until you are satisfied with your Website Design and development. - We take extra efforts to first understand your business and brand and develop a website that is just perfect for you. - We are active and provide support in a long run. - We don't just use one website layout for every client, we tend to create professional website with unique design for each of our client.
sarah ockonor

Music Grunge Magazine Wordpress Theme - 1 views

  •  
    Music Grunge Magazine Wordpress Theme, One Of The Best Wordpress Music Magazine Themes Templates, This Theme Has a Unique Design and a Good Easy To Edit Layout, Perfect for Music Blogs and Sites, The Theme Has a Number of Features Such as Theme Options For Setting 125x125 Advertisements, JQuery Powered Tabber and Social Bookmarks, Two Column Fixed Layout, Dropdown Menu, Gravatar Ready, Widget Ready, SEO Optimized, Fixed width, Logo .PSD file and Font Files are Included in Theme Folder, Right Sidebar, Dark Brown, Vector Grunge Banner
Jitendra Patel

Web-design layout tutorial - 0 views

  •  
    Seo Traffic engine describe Web design layout tutorial, that how to design your webpages perfectly.
keaton dodson

20 Useful Tools to Make Web Development More Efficient - 0 views

  •  
    logicss is a collection of CSS files and PHP utilities aimed at reducing web development time. It allows developers to create customizable fixed, elastic, or fluid (liquid) layout grids.
  •  
    logicss is a collection of CSS files and PHP utilities aimed at reducing web development time. It allows developers to create customizable fixed, elastic, or fluid (liquid) layout grids.
cms ideas

Magento Mobile Theme - 0 views

Magento Mobile Theme by Cmsideas According to recent researches, there is an increasing number of customers who use mobile for shop...

magento mobile theme themes

started by cms ideas on 12 Oct 14 no follow-up yet
‹ Previous 21 - 40 of 282 Next › Last »
Showing 20 items per page