Footer placing itself behind gallery [closed] - html

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I got troubles placing my footer at the bottom on one page. It works fine on all pages, except for my gallery page.
The footer places itself behind the gallery images, while the content displays after the last image in the gallery.
In my structure the footer is placed after all the images in the gallery, but when I inspect the site, it seems like the div has no height.

Try add float: left to gallery and footer and then set also width: 100% for footer.

Related

CSS animation slightly increases the page width [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 10 months ago.
Improve this question
I have a page with 3 flip cards based on this example. For some reason, during the flip animation, a scroll bar appears on the side of the page and then disappears when the animation is over. It causes the page content to shrink and expand for a second.
Is there a way to avoid it? It seems like the animation expands the page width by a couple of pixels.
You could try an overflow: hidden on the Card-Container.
It will cut of overflowing content and therefore avoid a scrolling bar.
https://developer.mozilla.org/de/docs/Web/CSS/overflow

Bootstrap Carousel images are not responsive [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 5 years ago.
Improve this question
It seems that the bootstrap carousel images are being given a height/width attribute by views or bootstrap_views. This means that when the page is resized, or indeed viewed on a smaller screen/device the image is cut off as the carousel "window" is shrunk. The image in shrink in mobile devices. Also caption is not aligned properly in mobile devices.
Try by adding img-responsive class.

Header moves on different web pages [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
Hi I just set up a website and I placed some other webpage inside to check what looks like. When looking at webpages, on 2 of the pages the moves to the right for some reason. Just wondering if anyone had any thoughts why the heading is moving only on these 2 pages and not the other 2.
If you wanted to view my problem its on teamnews.org if you click on "tours" then on "about" the header moves to the right slightly on "about" page.
Its because of your scroll bar on the right side. Add this to the first two pages.
body{
overflow-y: scroll;
}

HTML/CSS bottom navigation misplaced [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 7 years ago.
Improve this question
I am very new at both HTML and CSS but learning on the way. I have come to a stuck point and I can't seem to work it out. When viewing my webpage I have noticed that when I 'inspect element' the bottomnav div and ul div are both the size of my main div which is basically 0.
This is causing my issues in terms of trying to place a boarder on my bottom navigation.
None of the images are working but here it is
Code: http://jsbin.com/xuluqugovu/edit?html,css,output
Thanks for anyone's help on this.
Set overflow:auto on the .main rule (since its contents are floated, it does not expand to contain them)

HTML or CSS layout issue...? (Html smaller than viewport) [closed]

Closed. This question needs debugging details. It is not currently accepting answers.
Edit the question to include desired behavior, a specific problem or error, and the shortest code necessary to reproduce the problem. This will help others answer the question.
Closed 8 years ago.
Improve this question
I'm working on this website: www.artetia.com
The thing is that when I resize my viewport I get a white stripe in the right side of the browser as if the Body of my website is smaller or having a minimum width. Can't find how to solve this, I tried with Firebug to check the structure and seems that the html can't get smaller than 960px or so...
You need to stop the backgrounds being wiped out when the viewport is narrowed below 960px. Here's one way to do that via CSS:
div[id^="slide"] {min-width: 960px;}
(For those not seeing the issue, it's a common layout issue. If you narrow the browser below 960px, a horizontal scroll bar appears; and if you scroll right, the backgrounds have been wiped.)