Jump to content

Hi, I'm a beginner programmer and I code as a hobby, I was given this assignment to recreate a website and I would really appreciate some help. 

So I was wondering why these 2 elements weren't lined up. As you can see in the picture below the YouTube symbol and the blue links aren't lined up. I was wondering how I could line them up.

           <!--This is the HTML for the list-->			
			<ul id="socialmedia">
					<li><a href="https://www.facebook.com/brucetelecom">
					<img src="http://www.brucetelecom.com/images/facebook.png" title="Our Facebook" />
					</a></li>
					<li><a href="https://twitter.com/brucetelecom">
					<img src="http://www.brucetelecom.com/images/twitter.png" title="Our Twitter" />
					</a></li>
					<li><a href="https://www.youtube.com/channel/UCmNxyLUGOi_vUIzf7SfzwEQ" />
					<img src="http://www.brucetelecom.com/images/youtube.png" />
					</a></li>
			</ul> 
/*This is the code for the CSS of the same list*/
ul {
	list-style:none;
	padding: 0;
	margin: 0;
}

Thanks!

P.S: The website is brucetelecom.com/careers.php

Untitled.png

Link to comment
https://linustechtips.com/topic/607311-need-help-with-assignment/
Share on other sites

Link to post
Share on other sites

Try adding this to the CSS:

img {
	padding: 0;
	margin: 0;
}

And kinda playing around with that, if it doesn't align again the other way around.

"We're all in this together, might as well be friends" Tom, Toonami.

 

mini eLiXiVy: my open source 65% mechanical PCB, a build log, PCB anatomy and discussing open source licenses: https://linustechtips.com/topic/1366493-elixivy-a-65-mechanical-keyboard-build-log-pcb-anatomy-and-how-i-open-sourced-this-project/

 

mini_cardboard: a 4% keyboard build log and how keyboards workhttps://linustechtips.com/topic/1328547-mini_cardboard-a-4-keyboard-build-log-and-how-keyboards-work/

Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

×