Search the Community
Showing results for tags 'width'.
-
Download Extended Feature List Exclusive Themeone Slider Unlimited slides per slider Unlimited sliders configurations One click setting slider on page Different slider per page/post/portfolio Parallax effect Video support Exclusive Themeone Shortcode Generator 40+ shortcodes 900+ icons Unlimited possibilities Automatic accent colors Smart text color scheme Exclusive Mobius Grid System (post/portfolio/both) 4 sizes 3 styles Gutter width settings Aspect ratio settings Item number settings Number of columns settings Ajax button or pagination And much more… Mobius Grid Reorder Settings Page Ultra Responsive Layout Retina Ready 2 Header Layouts 2 Menu Layouts Custom Background Header Parallax Background and Video Mega Menu Ajax Navigation (optional) Ajax Search Autocomplete (optional) Ajax Comment and Review (optional) Unlimited Blog Layout (6 presets) Standard blog Full width grid blog Full width masonry blog Boxed grid blog Boxed masonry blog Wide grid blog Unlimited Portfolio Layout (6 presets) Full width grid multi size portfolio Full width grid square portfolio Full width masonry portfolio Boxed width grid multi size portfolio Boxed width grid square portfolio Boxed grid portfolio Ajax Filterable Portfolio (with pagination or ajax button) Call to Action Footer Column Options Social Sharing Buttons Sliding Sidebar Widget Unlimited Sidebars (with right/left layout) Unlimited Colors (one click switch dark/light) Typography 600+ Google Font 900+ Retina Ready Icons Built-in « like/unlike » system Search page, archive page, category page and 404 page 1-click Demo Install WPML Support Woocommerce Support Contact Form 7 Support Redux Famework Admin Panel Translation Ready SEO Optimized Post Formats (quote, link, video, audio, gallery) Twitter Integration Valid HTML5 / CSS3 Demo Files Included ( XML ) Outstanding & Dedicated Support And Much More !!!
-
Probabil aveti nevoie uneori s? dezvolta?i pe diferite m?rimi când face?i un layout ?i s? calcula?i întotdeauna ?inta ?i contextul pentru fiecare coloan? în parte, de la 1, la cât ave?i nevoie, 12, 24 etc. Cu pu?inele mele cuno?tin?e în Sass am creat ceva destul de folositor pentru a nu mai face manual calculul, a?a c? am creat un mini-calculator pentru coloane. Orice sugestie în plus e binevenit? atât timp cât se leag? de Sass ?i de micul calculator // If it is set to true, the function will display values in percentages $grid-width-in-percentage: true; // If it is set to true, the function will display values in pixels. $grid-width-in-pixels: true; // Columns or context. The currently value result in 960 (in pixels) and 100% in percentages. $columns: 12; // The width of the grid for each columns. Ex: the first columns will have 60px and so on ... $column-width: 60; // The width of the gap between each columns. Note! One columns don't have gap. $gutter-width: 20; // This is the number from where grid begin to count in loop. $number-offset: 1; // The margin before the first grid and after the last grid. $margin: 20; // Pixel to precentage formula: target (width (= columns) + margin + gutter width) / context (total width (= context is columns)) = result @InClude grid;