Increase width of my page
-
Hello,
I am seeking help to increase the width of my one-page website.
Background info: first I had to hide the sidebar using:
#sidebar {
display: none;then, I changed the following to make my content in the centre:
#page {
width: 500px;when i increase/decrease the width, the content goes left and right. I would like to keep it centre BUT i’d like to increase the width of the page where the photo and text are.
Any help?
site: faisalirshaid.com
Regards.
The blog I need help with is: (visible only to logged in users)
-
-
Also, I tried to increase the width say %150, but nothing happened. While when I did it %50, half of my page was gone.
Help please.
-
-
What i need is to be able to increase the width of my page without affecting its location. If i make the photo bigger, half of it or so gets chopped off. I want to be able to increase the space where i can put my content.
-
-
fine – i did it. the content is in the centre – but it didnt solve the issue of the width. when i add the width where i should, it doesn’t increase the width of the page but zoom in the photo, thats all.
-
Sorry, you have to increase the widths in #page and #content. Right now you have #page at 500px, and since that is the parent of #content, a change in width to #content alone will not increase the width of the content. Both have to be increased. Change the #page width you have in your CSS to your chosen width, then add a width declaration to #content at 50px less, which accounts for some padding. Here is an example with the page width set to 800px and the content width set to 750px
#page { width: 800px; } #content { float: none; margin-left: auto; margin-right: auto; width: 750px; }Also, I notice you have hidden the WordPress.com and theme footer credits from your site. Those are require to remain on your site, visible and readable. You can style them to better fit with your site design as long as they remain readable and visible. Please remove the following from your CSS to restore the footer credits?
#footer p { display: none; }Thanks in advance.
- The topic ‘Increase width of my page’ is closed to new replies.