• Hi, this is my first post and first time using wordpress so please be kind. ??

    Please go to https://siacorp3183.com/?page_id=43
    There is an iframe there and I need that to maximize. The Iframe is set by default to width=100%. However, it doesn’t matter what gets put there including width=50000px it never changes.

    How do we get the content to “maximize” within that space with no sidebars?

Viewing 8 replies - 1 through 8 (of 8 total)
  • Thread Starter salescart

    (@codeaholic)

    More:
    Using the Theme Name: Twenty Fourteen
    Page set to “Full Width Page” Template

    Thread Starter salescart

    (@codeaholic)

    Ok, edited the style sheet, it fixed it, but it did change it for ALL pages.

    .page-content {
    margin: 0 auto;
    /* Changed on 10/10/14
    max-width: 474px;
    */
    max-width: 100%;
    }

    To restrict your css to just that page, include the page id selector:
    .page-id-43 .page-content {
    margin: 0 auto;
    max-width: 474px;
    max-width: 100%;
    }

    Its not advisable to edit the style sheet, since this will be overwritten by a theme update. Use the Simple Custom CSS plugin or similar.

    Thread Starter salescart

    (@codeaholic)

    How do I use the Simple Custom CSS? I installed it but where is the “how to” documentation on these plugings?

    Where (or how) do you put the changed CSS into Simple Custom CSS?

    I entered the CSS into the Appearance>>Custom CSS and now the site is back to the way it was in the beginning… Broken

    Thread Starter salescart

    (@codeaholic)

    It seems to have created the css here–> https://sia-corp.com/?sccss=1&ver=4.1 ?

    However, it doesn’t seem to matter what I do now, I can’t get this to display bigger.

    Not much comes with documentation…

    Go to Admin page > Appearance > Custom CSS. Delete what’s there are try this snippet. Sorry, this stuff can be a bit trial and error sometimes.

    .page-id-43 .site-content .entry-header,
    .page-id-43 .site-content .entry-content
    {max-width:782px}

    Thread Starter salescart

    (@codeaholic)

    Yeh, I played with it and got it to work finally. Its pretty much what you have. I didn’t realize they changed the theme and changed the CSS tag to entry-content from what it was before. Let me know if its wrong to use post-43…that’s what it looked like to be when I viewed the CSS.

    This worked:
    .post-43 .entry-content {
    margin: 0 auto;
    /* Changed on 10/10/14
    max-width: 474px;
    */
    width: 800px;
    max-width: 800px;
    }

    .post-43 is OK as well. If you miss out the entry header bit the “Online Store” bit won’t line up.

    .post-43 .entry-header,
    .post-43 .entry-content
    {margin: 0 auto; width: 800px; max-width: 800px}

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Maximum content not maximized’ is closed to new replies.