Same Css, Same browser, Same site, tested on different computer [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
Homepage Eagle page: /eagles.html CSS: CSS/styles.css
I'm sure I'm overlooking something obvious, but I can't seem to find it.
Both of these pages stem from the same CSS file for formatting. Why does the eagles page navigation bar appear so thick compared to the homepage?

Simple solution, on your eagels.html you have the following structure for your top navigation
<ul>
<h2>
<li>..</li>
</h2>
</ul>
The h2 is wrong there and it causes the navigation bar to be bigger, just get rid of it and it should work.
And the next time you ask a question here, please don't just copy/paste links to your website but show us the actual code here with your question.
Asking Rules Stackoverflow

Related

Can't figure out how to add social media icons to a navigation/menu bar [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
Closed 8 years ago.
Improve this question
I'm working on a wordpress site, using the wordpress theme flatsome http://flatsome.uxthemes.com/
I wish to add social media icons on the menu/navigation bar so that people can quickly go and access the different social media platforms.
please help!! :)
This is not that straight forward. Open the file header.php (I only guess that there should be the code for the nav bar), find the code snippet that produces the navigation bar and enhance it with your social media code.
If you find any trouble, post the part of the code that creates the nav bar to get a better look.

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.

How quora put that image on their home page? [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
I'm really a noob with HTML and CSS skills so I'd like to do this very simple question
I Saw on the Quora Site a very nice image (I'm not sure if that is a simply image or it's another attachment technic) and I'd like to build a similar in my page like the Quora did.
Someone can explain to me How to do it?
It’s not clear which image you mean.
On the home page, there is a background image (stars), which gets inserted via CSS (background property), and an image (earth), which gets inserted via HTML (img element).

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.

Text appearing stacked in page pseudo CSS3/HTML5 [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
Closed 8 years ago.
This question appears to be off-topic because it lacks sufficient information to diagnose the problem. Describe your problem in more detail or include a minimal example in the question itself.
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.
Improve this question
I'm making a web page for a charity and the text on the page is appearing stacked without my intention. I decided to play around with CSS3 and HTML5 (badly) so it won't be fully compliant.
I've tried searching and looked at some articles about how to stack with css3 but it doesn't seem that I've accidently implemented any of these by accident. It's in PHP for no other reason than to use 'include' and because I plan on expanding it so all the html and css you can see on the page is all that's going on.
The footer is appearing behind the main body of text.
http://aberystwythslsc.org/activities.php
Any help would be greatly appreciated.
Your <section> has a set height. Simply remove that and you'll be good to go.