Need help adding background image [closed] - html

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
So I have made a website and I am a beginner so please take a look at my website using GOOGLE CHROME and then tell me why the background image is not appearing. The url is IS.gd/space101 thats all.

That's because your image is unavailable. See for yourself: http://www.ehdwalls.com/plog-content/images/1920x1200/space/space_travel_remix_by_mx-steel_2560x1600__resized_1920x1200-wide.jpg

I don't know whats the problem exactly, but there are 2 main issues in my opinion.
1. The URL of the image you like to use referers me to an site which tells me that the website is currently unavailable. Maybe thats the issue.
2. Have a look over your structure. You should use for every website this structure:
<!DOCTYPE html>
<head>//Content like <title></title></head>
<body>Content of your website</body>
</html>
You used multiple <body> Tags. Maybe thats also an issue.

Related

What is the name of this character used to indicate social sharing? [closed]

Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
This question does not appear to be about programming within the scope defined in the help center.
Closed 2 years ago.
Improve this question
Is there an HTML code for this character? If there is, can you all let me know what it is? If there is no HTML code for this character, can you let me know what this glyph is called? I had been looking all over the place for it, and today I happened to stumble upon it.
Most icon libraries use a variant of "share" as the terminology for this icon.
Here are a couple of examples :
Material Design Icons calls it share.
AntDesign calls it share-alt
That is the share icon. I think FontAwesome has it, or if you want exactly like that you can search for it on FlatIcon.
Link for FlatIcon
Something that I usually do is getting all the icons that I will use on the project and make it into a font. I use this service to help me with that: https://icomoon.io/app/
I think it's called a SHARE ICON

Keep the image fixed height css [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 9 years ago.
Improve this question
I have been scratching my head over it for a long time. Unable to find a solution. I have uploaded the website on live server for you to see. Ok the problem is that logo keeps pushing the div down causing navigation menu to break . The problem is worse on firefox and safari.
It would be hard to explain unless you see it yourself however I am attaching an image to make it clear what the problem is.
Here is the URL where page is located: bitcoinirl.ie
P.S: I know it is a bad practice to post url instead of code but really can't figure out the cause for the problem. Hence unable to paste appropriate code
Ahmar
While I see countless problems in the code (or is it template/boilerplate?), this fixes the problem as you describe it, without accounting for your lesser screen sizes (I can't test the fix because the menu gets garbled on responsive breaks).
Line 334 or so of styles.css
.nav-menu__link {
width: 120px; // Change this to 12-13% instead of 120px;
}

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.