The liquid-layout tag has no wiki summary.
0
votes
1answer
19 views
Which is best for built a web tool in gwt
I am new to GWT. can anyone help me to understand which one is best to built a web tool. Fluid Layout or Fixed layout...?
help me in this...
Thanks,,
2
votes
1answer
49 views
Creating a single elastic/liquid layout screen for Android
Is it possible create a liquid/elastic screen layout on Android that resizes to fit all screen sizes?
Currently I'm playing around with different layouts for small, medium, large, xlarge etc, but ...
0
votes
1answer
28 views
CSS nav bar not appearing
I want to set up a page that hides a menu bar, depending in the size of the screen. I have it set up so that this menu bar is supposed to disapper when someone sets it to a mobile screen size (I ...
0
votes
1answer
34 views
Having problems with creating a fluid formatting.
I'm struggling terribly to figure out why my content overflows and my divs aren't playing nicely. (all sitting where they should be.)
This is a link to what I've got currently. I'll keep trying ...
2
votes
1answer
68 views
Set content container to 100% of body not parent
I am trying to create a 2 column liquid layout with a menu on the left and site content on the right.
The menu is meant to go into the right column (div.liquid-right) and site content is then meant ...
0
votes
0answers
10 views
liquid templating - stylesheet_tag medi print
<html>
<head>
<meta charset="utf-8">
<title>title</title>
{{ "print.css" | asset_url | stylesheet_tag }}
<!-- i want above code ...
3
votes
1answer
99 views
Responsive table is hiding columns with no values
On one of my pages, I have a responsive table that changes layout when the browser gets small. When the columns in my table have values, everything works correctly, as shown in this fiddle.
When the ...
0
votes
1answer
28 views
Minimum margin in a liquid layout
How do i prevent the content from jumping down below the sidebar when the min-margin is reached?
http://jsfiddle.net/7SAHm/4/
<div id="wrapper">
<div id="sidebar"></div>
...
1
vote
1answer
224 views
Custom fields for Shopify User Registration Form
I can't find any documentation on how to add custom fields for the user registration forum so I tried something but didn't work:
<div class="single-full-width customer">
<div ...
1
vote
4answers
48 views
Is There Any Way To Get The Actual Size Of Full Window In JavaScript / Jquery?
I'm trying to make a fluid layout for my site but the problem is that if a window is re-sized to be small before the page loads and then they maximize their window, the page is a small size, my ...
0
votes
1answer
77 views
Shopify: How do I ensure my application proxy content will work for all Templates?
I am building an application proxy for Shopify.
the documentation (http://api.shopify.com/app_proxy.html) says...
If the HTTP response from the Proxy URL has Content-Type: application/liquid set ...
0
votes
2answers
77 views
How to use mustache.js inside of a site generated with Jekyll and Liquid Layouts all together
I have a site built in Jekyll for rapid prototyping of a JavaScript project I'm working on: Choropleth
Now I've decided to introduce mustache.js into the project and obviously I ran into the issue of ...
0
votes
2answers
71 views
How do I use vertically stacked divs as pages that each fill browser window?
I've seen an effect on a few websites that gives you what are essentially vertical 'pages' which each fill the browser window. Examples:
http://www.bleed.no/
http://www.weworkonsunday.com/
The ...
0
votes
4answers
79 views
Fluid layout with CSS
I have a page that has 10 divs acting as big buttons that are displaying in 2 rows of 5 but I would like it so that if the page is resized or it is opened on a device with a smaller screen the layout ...
0
votes
1answer
810 views
How do I Use the Sticky Footer Code with Responsive Layout?
I've been trying out the Sticky Code on various pages and the closest code that has got my pages looking half decent, would be the cssstickyfooter one.
I started a project a few months ago, that I ...
1
vote
1answer
378 views
2-column fixed-fluid lay-out with fixed horizontal bars and scrolling content
Looking through this site, and others, I've not found a solution for this specific matter. What I want to achieve could be best described after viewing the following example (also placed below):
...
0
votes
1answer
230 views
Liquid layout with 100% height div at the center that has overflow, along with resizable divs surrounding it
So here is the relevant markup to make it clearer (I've also put this into a jsFiddle):
HTML
<div id="header">
Header
</div>
<div id="container">
<div ...
0
votes
5answers
115 views
Any Idea how this web site acheives a fluid/liquid layout [closed]
In this web site, www.emblematiq.com, the layout is fluid/liquid. I was looking at the code but can not seem to figure out how it is acheived. Looks like a fixed width layout with the canvas element ...
1
vote
2answers
112 views
CSS change height of children based on container element count
I've got a container which sometimes has three elements, sometimes four. The height of the container is constant.
Are there any bright ideas out there for a CSS-based method for a vertical ...
0
votes
2answers
195 views
CSS liquid layout where the footer div follows the size of the page and stays at the bottom
I'm working on the following layout structure:
<div id="wrapper">
<div id="header"></div>
<div id="pageContainer"></div>
<div id="footer"></div>
...
0
votes
3answers
91 views
Relevance of em units?
I'm working on an old project that's using em's extensively for everything, from font sizes to layouts (widths, margins, padding etc.) and it got me wondering if there's actually any benefits in ...
2
votes
1answer
69 views
Chrome liquid layout issue
I have a div with this class:
.header {
width: 100%;
height: 10%;
}
If you inspect this with a web developer tool, you can see how browser calculate the width and height of an element:
IE ...
0
votes
6answers
284 views
Media query on javascript?
I have the following snippet which I want to disable on tablets and mobiles.
if ( !! $('#sidebar').offset()) {
var stickyTop = $('#sidebar').offset().top;
...
0
votes
0answers
33 views
Fixed width layout [closed]
What are the general rules for coding fixed width layout?
I am clear with concept. But is fixed width layout always be pixel based?
If we compare fixed width layout with liquid layout what are the ...
1
vote
1answer
86 views
Large font size can't make the layout liquid
At the begin, I doesn't set the font-size, insert a long text in div,like:
<div>Hello World Hello World Hello World Hello World Hello World Hello World</div>
if I narrow the browser,the ...
1
vote
0answers
155 views
CSS Resolution Media Query Support
Currently, only Firefox and Internet Explorer (!) seem to have support for the min-resolution and max-resolution CSS media queries (see here and here). When can we expect support for these media ...
0
votes
2answers
389 views
Liquid Layout: 100% max-width img not applied - why?
I'm totally new to this liquid layout stuff. I've notice, as most of us, that while most of my layout components "liquify", images, unfortunately, don't.
So I'm trying to use the max-width: 100% on ...
0
votes
2answers
108 views
Layout with liquid-fixed-liquid design…Can't seem to get it right
I know I should know how to do this, but for all of my searching on SO and the internet, it's evading me. A friend wants a page with a fixed width centered wrapper, 990px wide. Left and right will ...
0
votes
1answer
272 views
How do I display all of my products on my home page using Shopify and Liquid?
Is there a simple snippet of Liquid markup I can use on my index.liquid page (home page) to display all of the products that I have and make each of those images a link to the respective product's ...
1
vote
3answers
163 views
Can I display an html page with a html page without frames?
I am new to html, css, and javascript. I remember being able to do this with frames 10 years ago when I messed around with html. I want a table of contents on my left and my content on the right. I ...
1
vote
1answer
78 views
Liquid HTML - sizing issue
Why is the red box not the same size as the green box? (I have to have the absolute position as I'm overlaying two images)
What am I doing wrong?
<div style="position: relative; float: left; ...
0
votes
0answers
55 views
How to achieve a certain padded two column layout with Blueprint?
I wish to adapt a simple ASP.NET MVC view to a two-column layout. To that end, I figured I'd use Blueprint, but I'm not sure how to retain the desired page design within the grid. The below screenshot ...
2
votes
2answers
96 views
HTML fluid columns: 25% + 25% +25% +25% != 100% in webkit/opera
I'm trying to build a multi-column layout that is adaptive (fluid, elastic, whatever you want to cll it) and have built a test document to try the idea out.
I did some calculations to come up with ...
0
votes
1answer
208 views
Problems with fluid layout in Firefox
stackoverflow has helped learn lots of cool stuff but unfortunately I'm stuck on something and don't know how to research my way out of it....so here goes floating a question which I hope has a simple ...
0
votes
1answer
136 views
Extra space between fixed and liquid elements in IE
I'm setting up a very simple fixed-liquid layout. The header is set to 100%, the sidebar is set at a fixed width and floated to the left, and the width of the content area is not defined (so that it ...
1
vote
1answer
171 views
coda slider 2.0 to have % widths for responsive
I have used Nail Doherty's coda slider for a few years now and was wondering if anyone knew of a way to make it responsive so that it uses % widths for the container not px.
I understand that it ...
0
votes
4answers
65 views
CSS one div with liquid width next to a floating div that may or may not exist
I have already read this question but I can't get my head to work a solution that fits my needs, because my situation is a bit different and because I am not very good at CSS.
What I have is a div ...
1
vote
2answers
2k views
Using CSS to make a liquid grid of uniformly sized divs with margins
How would you make a liquid grid of elements with uniform size and margins in CSS?
The main problem I have is the margins. I feel that the obvious solution is to set the widths and margins to a ...
0
votes
2answers
611 views
Calculating height of a div using Less.js in a liquid layout
I have a liquid layout and am learning/ using Less.js for my CSS.
I have a div 'A' that needs to take account of the user viewbox, substract another div 'B' height (which is in %) and finally another ...
0
votes
1answer
179 views
One-Column Layout with liquid images on either side
What I want to be able to do is to have a 700px column with an image to the left of it with a 20% width and an image to its right with a width that takes up the rest of the page on the right side. SO ...
0
votes
3answers
1k views
Keep list elements in the same line when resizing. CSS liquid layout
I have this menu I found how to made on a tutorial but I have just one trouble. When I resize the page all the layout changes to fit into the new window size but the menu seems to make new lines when ...
1
vote
1answer
265 views
html/css: 3 column liquid/fluid floating; floating columns beside cendered column, dropping sides to next “line” upon float?
So this is my first Q on stackoverflow, and upon finally "creating" an account, i see a rather large list of "similar" question-titles to my own... but i have been nearly abusing google to find the ...
3
votes
2answers
214 views
CSS layout with fixed and liquid columns
I'm having a problem creating a layout that's partly liquid. The layout has to have 100% width and height but it shouldn't have scrollbars (overflow: hidden;).
On the image above shows what I'm ...
0
votes
2answers
218 views
Liquid Layout IE Problems, of course (Newbie)
I'm new to CSS, never created a layout before and I'm having some issues with my first one in Internet Explorer. I think it looks good in Firefox though.
I have done a lot of reading about HTML and ...
1
vote
1answer
141 views
How safe is to allow customer edit Handlebar.js template
The Rails application that I am building need to allow the users to edit the page template.
The main concern is about how safe it is to allow the customers edit the templates. So that puts the erb ...
4
votes
2answers
417 views
Tell me how to do the semi liquid layout without javascript, i feel I'm missing something simple
Okay, first off I'm supporting back to IE7, so box-sizing is out.
I've got a fixed size header and footer (say 80px each) positioned to the top and bottom of the window, respectively.
I want a div ...
0
votes
3answers
237 views
Text wrap around image where image comes last in source. Liquid layout
I have an image that I want wrap text around it. eg
ttttttt|image|
ttttttt| |
tttttttttttttt
tttttttttttttt
This would be easy if the image was before the text in the source code. However, ...
1
vote
3answers
244 views
Center liquid layout
I can't see where is problem, but .topbar isn't centered as it should be... Distance from left and right should be equal.
http://jsfiddle.net/P4TpQ/
This is my code:
<!DOCTYPE html PUBLIC ...
1
vote
3answers
172 views
Mis-aligned images on fluid/percentage based layout
I have this code: http://jsfiddle.net/VV9qJ/ but for some reason I cannot seem to fix the little pixel errors caused by the images. Basically you'll notice that some of the images have a pixel or two ...
1
vote
1answer
807 views
CSS - child not inheriting the width of a parent in liquid layout
All,
This appears to be Firefox related issue (havent tried Opera & IE).
I have 'ul' children which are given a width of 100% in a liquid layout. The parent 'li' itself has a width of 33% of its ...


