If you go to my website (www.eduardlid.net) > more > website 2011 > hospedaje,
How do I get the images at the same distance of the right - and left side of the page?
1) Why didn't you just post the URL http://www.eduardlid.net/nicolas/hos...hospedaje.html to make it easy for people to go right to the page in question. Any minute you save us will be use to try to solve the issue at hand.
2) Your CSS ex4.css cannot be found. So you need to solve the path.
3) Create a container div(<div id="imgecontainer">....your images go here</div>) then:
- solution a: set its let and right margins to the specific pixels value you desire.
#imageoontainer{
margin:0 40px; /* 0 for top and bottom, 40px fro left and right margins. Change to whatever values */
overflow:hidden;
}
- solution b: set the width of #imagecontainer to a certain percentage of the page width then set its margins to auto
#imagecontainer{
width:90%; /* change to whatever percentage can accommodate your images */
margin:0 auto;
overflow:hidden;
}
1) Why didn't you just post the URL http://www.eduardlid.net/nicolas/hos...hospedaje.html to make it easy for people to go right to the page in question. Any minute you save us will be use to try to solve the issue at hand.
2) Your CSS ex4.css cannot be found. So you need to solve the path.
3) Create a container div(<div id="imgecontainer">....your images go here</div>) then:
- solution a: set its let and right margins to the specific pixels value you desire.
#imageoontainer{
margin:0 40px; /* 0 for top and bottom, 40px fro left and right margins. Change to whatever values */
overflow:hidden;
}
- solution b: set the width of #imagecontainer to a certain percentage of the page width then set its margins to auto
#imagecontainer{
width:90%; /* change to whatever percentage can accommodate your images */
margin:0 auto;
overflow:hidden;
}
I did what you said and now you can see that the page (http://www.eduardlid.net/nicolas/hos...hospedaje.html has changed! But I donīt manage to get a margin at the top, bottom, left and right side of the images! What do I wrong?
I did what you said and now you can see that the page (http://www.eduardlid.net/nicolas/hos...hospedaje.html has changed! But I donīt manage to get a margin at the top, bottom, left and right side of the images! What do I wrong?
Bookmarks