HTML Footer on my website [closed] - html

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
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.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Improve this question
I'm working on a website: Click here
On every page I made a footer. But I can't get the footer centered and locked on the bottom of the page. Hope some of you guys can help me. I already tried some stuff I found on StackOverflow but it won't work....
Regards,
Matthijs

The class you are using on the div (.grid_4) has a float:left value. If you get rid of this float and you add text-align: center on the div, the content is centered.
For a sticky footer, check out this link

Related

Claimed to be the same height but doesn't seem to be [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 11 months ago.
Improve this question
Difference between the headers
The website's header
My header
Can anyone please tell me what is the thing that is probably making this happen?
This is my span's style
This is the website's span's style
Edit: I tried to make the headers of stack overflow and facebook, I did not have the same problem, but I need to know why this website is like this.
Well it is the same, but the page is just resized. If both browser windows were the same size, they would be the same. The difference is very slight anyway.

HTML Bottom align [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 5 years ago.
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.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Improve this question
Im trying to align my image to Top and Bot, but it is not aligning to bottom.
My Code :
style='position:absulte;margin-top:-1px;width:80%;height:95%;bottom:10%'
(Bottom:10% is not working)
I have tried another solving topics on StackOverflow, none of them worked.
I found the solution by changing style
Previus code :
style='position:absulte;margin-top:-1px;width:80%;height:95%;bottom:10%'
New code:
style='width:900px;height:600px'

contenteditable= false not working [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
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.
Improve this question
I have a div that is editable for unknown reason (I don't want it to be editable) and even if i try contenteditable="false" it doesn't solve the problem.
I thought maybe it has to do with some plugins conflict, but disabling any wordpress plugins wouldn't help. i use CKeditor so i thought it might cause the problem, but disabling it also doesn't solve the problem.
Any Ideas?
Stupid me, i had a -webkit-user-modify: read-write; on this class which made it editable. now i need to find out why did i add this :)

need a little assistance with positioning of my <li>Home</li> line of code on my page [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 7 years ago.
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.
This question was caused by a typo or a problem that can no longer be reproduced. While similar questions may be on-topic here, this one was resolved in a way less likely to help future readers.
Improve this question
i have been following a tutorial perfectly, but for some reason, my code isnt producing what is displayed on the video. i have this html document im working on, http://jsbin.com/pizaje/1/edit?html,output
and my Home is in the wrong place, as shown in these images. mine has the word "Home" above the "BBC UK" news header
but it really has to have the word "Home" underneath the "BBC UK" and i don't know what i have done or what to do to fix?
is there any assistance anyone is able to give me ?
Your break in code is a class but the style in css is an id
change the css to the class like following
.break {
clear: both;
}

Disable horizontal scrolling without using overflow hidden property [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
My html code here and
screenshot
How do I remove the horizontal scroll bar with out using: style="overflow-x:hidden;" property ?
Problem Solved.
The footer was not inside a container div. So putting it inside a div class="container" solved my issue. Hope this helps someone.