CSS is not working for some reason -



CSS is not working for some reason -

ok allow me see if can create sense here. lining 3 circles in straight line. happens in 2 places on main page of site. coded first section , lined circles perfectly, re-create , pasted exact same code , first line messed sec works perfect. cover bases, classes, not id's not issue. have quadruple checked brackets, spelling , other minor incident , fine well. going insane here. please if lend hand or suggestion forever grateful. oh , circles images if helps needed information.

<div id="pages"> <div class="projects"><a href="projects"><img src="images/projects.png" alt="projects" align:"right"></a></div> <div class="services"><a href="services"><img src="images/services.png" alt="services" align:"middle"></a></div> <div class="team"><a href="team"><img src="images/team.png" alt="team" align:"left"></a></div> </div> <div id="contact"> <h1>contact us</h1> <div class="email"><a href=""><img src="images/email.png" alt="email" align:"right"></a></div> <div class="phone"><img src="images/phone.png" alt="phone" align:"middle"></div> <div class="business"><img src="images/business.png" alt="business" align:"left"></div> </div> .projects{ float: left; margin: 100px 75px 75px 300px; } .services{ float: left; margin: 100px 75px 75px 75px; } .team{ float: right; margin: 75px 200px 75px 75px; } .phone{ float: left; margin: 100px 75px 75px 300px; } .email{ float: left; margin: 100px 75px 75px 75px; } .business{ float: right; margin: 75px 200px 75px 75px; }

with out looking @ html code hard tell errors.but mutual mistake,which pros create sometimes, forget change id of html tags when re-create 1 place another. assumed error in html code,since sec line work , first 1 not.

try changing id may help , check have giving proper name class.

css

Comments

Popular posts from this blog

c# - ASP.NET MVC Sequence contains no matching element -

java - Parsing XML, skip certain tags -

rest - How to invalidate user session on inactivity in a stateless server? -