Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions must demonstrate a minimal understanding of the problem being solved. Tell us what you've tried to do, why it didn't work, and how it should work. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I need to make layout like on picture related, the difficult part is, in this big centered div rounded with another divs from all sides. Masonry plugin can make only cornered stamp divs, but not centered. So, how can I implement this?
I've just written a kind of extension for the Isotope plugin to enable stamps in random locations. It works quite well, but two stamps can still overlap (have to fix that ;)). Check out the code in this fiddle: http://jsfiddle.net/XS74t/
The way to use it: give your item the .stamp class and add the position as a html5 data element:
<li class="item" data-grid-pos='{"x": 2, "y": 1}'>
My stamped item
</li>
Please not that a lot of credits have to go to "Mikko Tikkanen, Zonear Ltd. ", beacuse it's a kind of an extension of his perfectMasonry plugin.
have fun!
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Questions concerning problems with code you've written must describe the specific problem — and include valid code to reproduce it — in the question itself. See SSCCE.org for guidance.
Improve this question
I am trying to create a twitter grid, I have some grid spans that have a larger height then others and on each row of the grid the spans are pushed down. What I would like to do is have the items to appear under the over items. I have taken a screen shot of what it looks like and I have photoshopped how i would like it. Screenshots below.
Here is the original
Here is the photoshoped
There are 3 overall approaches to Bootstrap grid alignment / height issues..
A CSS only approach like this this..
http://bootply.com/85737
A 'clearfix' (responsive reset) approach like this this (requires iteration every x columns)..
http://bootply.com/89910
Finally you may want to use the Isotope/Masonry plugin. Here is a working example that uses Isotope + Bootstrap..
http://bootply.com/61482
This is a common issue as grid elements have to be in rows so first and last will loose left and right padding respectively.
Workaround I use:
- if there is a set number of grid elements per row then I don't include <div class='row'>, just the gridded elements, and then remove the extra padding with nth-child() property of every third and fourth element (in case there are three gridded elements)
Also you could try using masonry
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
2 lines are displayed in the UI lyk . It's there in a single span element
I am testing this, and it looks good
however I am skeptic about it.
I want to align both the lines such that it looks like.
I am testing this, and it looks good
however I am skeptic about it.
both the lines start together unlike in the previous case.
How this can be achieved using CSS.
It's hard to say something without codes but I guess, you are looking for text-indent. I'm assuming your lines are in the same container and not separate lines, just a part of the same paragraph.
CSS text-indent property
Make sure that css codes affecting your text doesn't have text-indent property or set text-indent to 0px.
If it doesn`t work with "text-indent: 0;", than the solution is with JS/jQuery
Eg - remove extra white spaces using jQuery:
$('.pln').html($('.pln').html().replace(' ', '');
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
Stackoverflow community
I know I know, lots of this cases out there, but seriously i try to apply solutions to my case and doesn't fix anything. Seems very very very basic stuff but through this afternoon I can't find the reason of Why my container doesn't expand?
I try to modify my 'height property' and anything happen. Here is the code: https://gist.github.com/duranmla/9b6a11eba20d04403f99
The final Idea is that My footer has a height of 20% ~ 25% of my page. However as I've already said it is just stuck in that height that comes like for 'default'
Well.. Sorry for bother but anyway I suppose that someone could be useful the answer, the think is that you need to stick the element that you to re-size to some side to the screen by setting top, bottom, left or right to any value. my case just bottom: 0
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 9 years ago.
Improve this question
I feel like this is a very simple problem but I can't seem to wrap my head around it. What I have is a bunch of divs added to a container. Then I want those divs to freely position them self in any white space, but they must move from top to bottom, left to right. I also can not adjust the order of the divs. Here is an example of my problem http://jsfiddle.net/8GMGF/1/. I need the blue box to automatically move into the free space above it. Thanks for any input.
PS. I also tried flexboxes but they don't seem to be able to use free space either. Maybe I missed something.
The result you are looking for (with the subtle tweaks you want to make) might not be possible with pure html and css, you may wish to look into using a tiling plugin such as Masonary for jQuery:
http://masonry.desandro.com/index.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Questions asking for code must demonstrate a minimal understanding of the problem being solved. Include attempted solutions, why they didn't work, and the expected results. See also: Stack Overflow question checklist
Closed 8 years ago.
Improve this question
I have a search results page and I'd like to wrap each result in a simple box to differentiate between each group but I can't find anything on how to do this. All I found was w3schools page on the box model and that seems to affect the whole page so it isn't really what I'm looking for.
You'd need to wrap them in what's called a div this is essentially saying to a browser looking at the website "This is a block of something, treat it like that". You can create a div like this
<div class="result">Content in here!</div>
You can then assign all your divs the CSS class result this lets your use CSS code like
.result {
border: 1px solid red;
}