I Need some HTML / CSS assistance [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 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.

Related

How to make an image not overlap navigation bar in CSS/HTML [closed]

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
So what I am trying to do is the same effect on http://www.spine-practice.com/index.php where the photo overlaps the navigation bar which I have done though there is one problem.
On theirs how did they make it so that you can actually click the navigation bar correctly instead of the picture blocking you from being able to?
It sounds like you need to mess around with the z-index property.

Can't click on links, mark text, how can I fix this? [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 making a website, and I've added a list and made the list links to different websites.
The problem is that on the website it shows that they are links but I can't click them, or mark them or anything. I can't mark the text on the website either.
Yes a bit of your code would be helpful.
But it sounds, that some container overlapping your content if you reduce the size of your Browser-Window.
Just check that
Edit // If that is the problem, try to give your content a higher z-index.
Sounds like you're not using the <a> element.
See this tutorial on how to make a link.

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

Create vertically responsive header [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
This guy has a header image that automatically fits vertically to whatever dimensions are above the fold in your particular browser when you first view his site.
How does he do this? An example (Fiddle) would be great, if possible.
Is this possible with just HTML and CSS?
This is my site, and I used the script from here: http://srobbin.com/jquery-plugins/backstretch/

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.