Skip to main content

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

Rss Feed Group items tagged

Luciano Ferrer

circular, responsive jQuery carousel --- CarouFredSel 5.6.2 - 1 views

  •  
    "jQuery.carouFredSel is a plugin that turns any kind of HTML element into a carousel. It can scroll one or multiple items simultaneously, horizontal or vertical, infinite and circular, automatically or by user interaction. Oh, and it's responsive too."
xscademy conjoinix

Java Training Chandigarh - 1 views

  •  
    XSCademy is India's largest IT professional company providing Live Project Training, Website Designing & Development, mobile application development, seo services, software development.
Muhammad Saqib

Why Do You Need a Mobile Website Design or Responsive Web Design - 0 views

  •  
    According to a recent article on Huffington’s post, the U.N telecom agency stated that there are more than 6 billions mobile devices. Out of them, 1.2 billions users use web-enabled mobile phones worldwide & this usage of mobile is growing at astounding rate, being adapted by every family. We have seen a significant increase in the mobile users in the past three years & this global trend is surely continuing to see growth in upcoming years. What does this mean to a web designer & site owner? It underlines the importance of a company to have a mobile version of their business website.
anonymous

Get Safe WordPress Websites in India - 0 views

  •  
    WordPress as you know is arguably the best content management system available today. Now, with the recent WordPress 3.6.1 update, your website can also become much safer using the platform.
Hostforlife Hosting

How to Use Chart Helper to Display Graphical Data - 1 views

  •  
    In this tutorial, you will learn how to display data in graphical form using the Chart Helper in ASP.NET MVC.
Harikrishna Patel

6 Topmost Joomla Extensions for Facebook - Softqube Technologies - 0 views

  •  
    Do Facebook Likes and Shares really matter? Are you willing to integrate Facebook in your website or blog? Then here we have described few of the Facebook Joomla extensions that will help you to integrate Facebook in to your Joomla website.
Asahi Technologies

6 Phase approach to web development - 1 views

Web development is a complex process that involves various phases from start to finish. Read more to find out why structured web development approach is key to building robust, scalable web applica...

web development design custom software apps

started by Asahi Technologies on 11 Sep 15 no follow-up yet
Hostforlife Hosting

How to Use Dropzone.js and HTML to Upload File in ASP.NET MVC - 1 views

  •  
    In this article, you can learn how to file upload in ASP.NET MVC using Dropzone.js and HTML5.
htmlslicemate.com

Interview with Designer: Marius Roosendaal - 1 views

  •  
    I do a lot of things, but I'm guessing you want to know more about my professional life. I mostly keep myself busy designing interactive and digital stuff, and I've been doing that for about 6 years. I also like to look over other people's shoulders and tell them they need to align something or make something or other red. Aside from that I like to do explorations with abstract geometry, patterns and typography. Some call it art, or at least want to put it on their walls or albums covers. It' s a lot of fun, and it gives some variety to my usual work of designing menus and layouts.
bryan yu

Using Lightbox Plus 1.6 to implements ColorBox for WordPress - 0 views

  •  
    Recently, Due to some convenience reason, so I proceed with revising Blog on the picture, but whether to adjust the picture size or location that it always do not really meet users requirement, especially when I saw an article and want to see the detail graphic in article, during this time a large image will be shows immediately in this page...
Soul Book

The Incredible Em & Elastic Layouts with CSS - 0 views

  • Elastic design uses em values for all elements. Ems are a relative size, written like this: 1em, 0.5em, 1.5em etc. Ems can be specified to three decimal places like so: 1.063em. “Relative” means: They are calculated based on the font size of the parent element. E.g. If a <div> has a computed font size of 16px then any element inside that layer —a child— inherits the same font size unless it is changed. If the child font size is changed to 0.75em then the computed size would be 0.75 × 16px = 12px. If the user increases (or decreases) text size in their browser, the whole interface stretches (or shrinks.)
  • All popular browsers have a default font size of 16px. Therefore, at the default browser setting, 1em = 16px.
  • The <body> inherits it unless styled otherwise using CSS. Therefore 1em = 16px, 0.5em = 8px, 10em = 160px and so on. We can now specify any element size we need to using ems!
  • ...9 more annotations...
  • However, (gasp) IE has a problem with ems. Resizing text from medium (default) to large in IE5/6 would lead to a huge increase in font size rather than the gradual one expected. So another selector is needed to get IE to behave: html{ font-size:100%; }
  • Let’s give our <body> some more style, and center everything in the viewport (this will be important later for our content wrapper.) Our initial CSS ends up like this: html{ font-size: 100%; } body{ font-size: 1em; font-family: georgia, serif; text-align: center; color: #444; background: #e6e6e6; padding: 0; margin: 0; }
  • 1 ÷ 16 × 740 = 46.25em (1 ÷ parent font-size × required pixel value = em value)
  • While we're here, we might as well add some typographic goodness by selecting a basic leading and adding some vertical rhythm, with everything expressed in ems.
  • Set a 12px font size with 18px line height and margin for paragraphs
  • Dividing the desired line height (18px) by the element font size (12px) gives us the em value for line height. In this example, the line height is 1 and a half times the font size: 1.5em. Add line height and margin properties to the CSS: p{ font-size: 0.750em; line-height: 1.5em; margin: 1.5em; } Now the browser will say to itself, “Oh, line height and margin is set to 1.5em, so that should be 1.5 times the font size. What’s the font size, again? 12px? OK, cool, make line height and margin 1.5 times that, so 18px.”
  • To retain our vertical rhythm we want to set an 18px line height and margin. Easy: If the font size is 18px then 18px in ems is 1em! Let’s add the properties to the CSS (and make the font weight light:) h1{ font-size: 1.125em; line-height: 1em; margin: 1em; font-weight: 300; }
  • Jon, good article and very useful chartm but your text sizing method has one major drawback. If elements with font-sizes set in em’s are nested, i.e with lists, these elements inherit the font size. Therefore each child element will be 0.75em (or 75%) of the previous one: See an example here. (Would have posted the code put it was coming out really ugly!) I would recommend against using that method and setting the global font size in the body tag i.e. 'font-size:75%' for 12px. Then only setting different font-sizes where necessary.
  • Thanks Will, interesting point, but that is solved with a simple font-size:1em on the first child. Retaining the default ensures that even images are sized correctly in ems. IE (surprise) will compute incorrectly against a parent length equivalent to 12px. My preference born out by some minor but painful computed size errors in complex layouts is not to adjust the body, and only set font size where necessary for specific elements.
  •  
    A nice and simple explanation of using EMs to make elastic layouts
Luciano Ferrer

[how to] FCKeditor Image Upload / Browse Server 2.10.14 - 0 views

  •  
    "[how to] FCKeditor Image Upload / Browse Server 2.10.14 Hi All, As of 2.10.14 this is what I found to work in getting the image / file upload and browse server feature to behave as you would expect. As with all forums information becomes fragmented as versions change and solutions are found so as requested I've put the following together from my experiences to get things working with FCKeditor."
Luciano Ferrer

phplist forums * View topic - [fix] FCKeditor issue with absolute links - read it ! - 2 views

  •  
    Ugly, but simple... "File :lists/admin/sendemaillib.php Search for: Code: Select all # particularly Outlook seems to have trouble if it is not \r\n # reports have come that instead this creates lots of trouble # this is now done in the global sendMail function, so it is not # necessary here # if (USE_CARRIAGE_RETURNS) { # $htmlmessage = preg_replace("/\r?\n/", "\r\n", $htmlmessage); # $textmessage = preg_replace("/\r?\n/", "\r\n", $textmessage); # } But this code above. It simply find and replace to replace your local image path to absolute link : Code: Select all //convert local to remote $htmlmessage = str_replace('/lists/', 'http://www.domein.com/lists/', $htmlmessage);"
Laura Reed

6 Common Misconceptions CEOs Have About Web Development - 4 views

  •  
    Agree! These are mostly what CEO think til now. Time for a change!
paypal hack

SECRET mass traffic software to earn up to $4000 in one day - 0 views

  •  
    Guyz checkout the testmoney of people saying about paypal money hack with live proof http://unlimitedfreepaypal.blogspot.it/2015/01/unlimited-free-paypal-money-on-your.html#comment-form 100% paypal money hack with live proof, This tool will give you money and it is really free! Yes you heard it right! Unlimited free Paypal money on your Paypal account. Buy anything you want, withdraw as much as you want!. http://payaplfreehacker.webstarts.com Congratulations! I'm about to reveal to you a SECRET mass traffic software to earn up to $4000 in one day. Get ready to be SHOCKED! http://easymasstrafficsoftwares.webstarts.com if you are looking for girlfriend or boyfriend or friends join this new facebook apps now http://justbecauseittested.com
« First ‹ Previous 181 - 200 of 248 Next › Last »
Showing 20 items per page