Welcome to the Treehouse Community
Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.
Looking to learn something new?
Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.
Start your free trialmukul lohia
985 Pointsmy phon icon amd mail icon are mixing with general information for desktop but for mobile it is not
my phon icon amd mail icon are mixing with general information for desktop but for mobile it is not how should i fix it my code is @media screen and (min-width:480px){
#primary{
width:50%;
float:left;
}
#secondary{
width:40%
float:right;
}
4 Answers
Daniel Gonzalez
22,105 PointsHi Mukal,
You might be missing a } at the end of your media screen, see below;
@media screen (min-width: 480px) {
#primary{
width:50%;
float:left;
}
#secondary{
width:40%
float:right;
}
}/* end of media query*/
mukul lohia
985 Pointsthanx now i got it..
mukul lohia
985 Pointsbut i want to ask one thing when i open my about or contact page then i again open my portfolio page then it is showing me Not Found
The requested URL /untitled.html was not found on this server.
mukul lohia
985 Points@media screen and (min-width:660px){ nav{ background:none; float:right; font-size:1.125em; margin-right:5%; text-align:right; width:45%; } #logo{ float:left; margin-left:5%; text-align:left; width:45%; } h1{ font-size:2.5em; } h2{ font-size:0.825em; margin-bottom:20px; } header{ border-bottom:50px solid #599a68; margin-bottom:60px; } } can u tell me what is the error in this code my page is beyond my expectation
Caitlin Pisha
6,645 PointsCaitlin Pisha
6,645 PointsThere is also a semi colon missing when you define the width for secondary, which could be messing with things