Why does the picture appear over the top-fixed menu? [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 8 years ago.
Improve this question
I've set a top menu using the following CSS:
position:fixed; top:0;
When I scroll down the page, it works properly. However, when there's a picture, the pictures block the appearance of the menu, as shown below:
Any suggestions?

z-index: 2;
On your topbar.
** Updated **

Related

Magic square cannot hide [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
I have my page - link
And at the bottom of It when loading page showing dark grey square which I don't know how to hide. Tried with inspect element, but no results.. Maybe you can do something?
try to change background-color of body to #FFF
body{ background-color:#FFF; }

When you link an image in html it leaves this blue hyperlink pixel in the bottom right? [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 linked couple of images that i have been working on and this has happened before but i fixed it by making the hyperlink text color the same as the background but i can not do that this time since i have an image as my background.
I think it's because link has a underline, for fix:
css:
text-decoration: none;

White space bottom Firefox [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 have a misterous gap between footer and the end of the window. It's only on Firefox.
http://agendakinder.wampanas.com
Thanks in advance
I can't really explain why, but from what I can see, this is caused due to the usage of positioning.
But where you have .logo-footer for the image of the giraffe, disable position:relative; and use margin-top:-232px;

Add shadow to toolbar divider [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 am trying to add white shadow/blur around one of my toolbar divider. Is it possible
Here is the link to fiddle. Anybody can help?
Alex
add width to .headerDivider that way you assign the length of you element.

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.