mutliple images in a div with different sizes [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 8 years ago.
Improve this question
I have 4 images, 1 (left) is suppose to be big, the other 3 next to it, and all of them in a container. The 3 on the right need to be all the same size. I can't get my images to show next to each other no matter what i do with the sizing. Am I missing something really easy?

make sure each image has a float:left
by adding that, each img will float next to each other...

Related

grid view using twitter bootstrap columns has some empty columns in a row [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 9 years ago.
Improve this question
I am trying to create a grid view in my site, a 4x10 columns as you can see here. The issue is that there is a row where the columns are not fully filled, as can be seen on this screenshot:
Any idea what might be causing this? I tried debugging this using inspector and can't see the reason why.
Please check the height of 4th element in First row. Increase its height and your issue will resolve.

I Need some HTML / CSS assistance [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 9 years ago.
Improve this question
I'm working on a ebay template for a store, and I'm trying to make a sidebar, and this happens.
http://i.imgur.com/Oktg32w.png
The sidebar is on the right, how do i get it to position all the way up?
here's the html/css code.
http://pastebin.com/DwbHeTcD
Make whatever div you have that encompasses the entire navigation bar position: absolute, and make sure it's the first thing in CSS, to make it nothing override it.

Menubar menus are below another div? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 9 years ago.
Improve this question
I have a problem with an HTML Menubar menus, the menus of the menubars are presented below another div, so are not displayed:
Increase z-index for the navigation menu. This will ensure that any objects that are overlapping them, shall make room for the navigation to come one level up.
For Instance,
z-index: 1;
PS: 1 is an example value. You can increase it to whatever value you want.
put z-index:1000; in css menu

How to make a photo collage using html and css? [closed]

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 want to create a photo collage using html and css.
The pictures i want to use are of variable height and width,but they must be fixed in the page without gaps.
How do i achieve this?Please help..!!
If you want to do this in css only you have to create divs for every column, and float those columns (but it messes up order of images).
Alternatively, you can use jquery plugin like this one .

Need help in html fluid/elastic/liquid layout. Please help me [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
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.
Closed 9 years ago.
Improve this question
I'm trying to implement fluid layout in my friend's site. But its not working. Its very simple page just a slider on it. Just take a look and tell me whats wrong with my code.
Check the page here
Thanks
.orbit-wrapper and #featured have a fixed width in their style attributes. If you want it to be fluid, you'll need to do something using percent, possibly with a max and min width.