Webpages margins

  • Unknown's avatar

    Hello,
    I would like help with the overall page margins of my website.

    As you can see, thanks to another educator, I was able to make it so that each blog, when clicked on individually, is opened in a fresh new page without any of the widgets. That way the text is clearer to read and spread out through the whole width of the page.

    I recently added a few pages in my website called Quotes 2012, 13 etc.

    In order for the quotes to be easier to read I would like for each page, when clicked on individually to also not show any widgets and margins , just like the blogs.

    Is that possible?

    Also, if possible, I would like to make the text font a bit bigger for the whole website. Once again, for better readability purposes. Thank you so much!

    The blog I need help with is: (visible only to logged in users)

  • Hi!

    In order for the quotes to be easier to read I would like for each page, when clicked on individually to also not show any widgets and margins , just like the blogs.

    If I am not wrong, you used this code to hide what you want in posts:

    .single #secondary, .single #tertiary {
        display: none;
    }

    You could use (add) a coherent piece of code for pages, like this:

    .page #secondary, .page #tertiary {
        display: none;
    }

    Also, if possible, I would like to make the text font a bit bigger for the whole website. Once again, for better readability purposes. Thank you so much!

    Try this. (currently you have 100%)

    html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
        font-size: 101%;
    }

    I hope this helps you!

  • The topic ‘Webpages margins’ is closed to new replies.