• Hello Support. I had this theme installed on 2 other testing platforms, and the in the customize section it shows a “Theme Options” Tab, where I can set 1 column or 2 column layout.

    Now in my fresh install on a new site, I don’t have that option. Ive tried uninstalling and re installing the theme but “Theme Options” is not available. All 3 installs have latest updates so what could be the problem?

    The page I need help with: [log in to see the link]

Viewing 5 replies - 1 through 5 (of 5 total)
  • Thread Starter recoil9

    (@recoil9)

    Update: Finally figured out what the problem was. I had set a post page as default for under construction, and I need to have default set to static page for theme options to appear. strange.

    Another question i have, is it possible to make the layout content fill the screen width wise on a desktop view? In looking at the code it seems the widest my content can be is 740px wide. Ive tried editing the css but must not be in the right area to have it stretch across screen. I really like the theme and would be great if able to pull that off somehow. ???

    Kavya Gokul (a11n)

    (@properlypurple)

    Hey @recoil9! I’m glad you found a solution for the theme options.

    For larger width of content, you can try using this plugin that provides alternative page templates. Alternatively, you can add some css code to the customizer, like this:

    .single-post:not(.has-sidebar) #primary, 
    .page.page-one-column:not(.twentyseventeen-front-page) #primary, 
    .archive.page-one-column:not(.has-sidebar) .page-header, 
    .archive.page-one-column:not(.has-sidebar) #primary {
      margin-left: auto;
      margin-right: auto;
      max-width: 900px; /* this is the number you have to change */
    }
    Thread Starter recoil9

    (@recoil9)

    thank you @properlypurple .

    I’ve been trying different codes i eventually found online and none seem to make the images as wide as, say the featured image. Featured image is full width of page, all other sizes I’ve tried for content images leave a gap on left and right side.

    One thing i noticed is that the text stretched as wide as the image and doesn’t look very good being so wide is it possible to limit the text width and keep the image full width?

    Thread Starter recoil9

    (@recoil9)

    properlypurple, something must be off in my theme, because it is not responding to your code. I added the code in “customize, additional css”. ?

    Kavya Gokul (a11n)

    (@properlypurple)

    Hey @recoil9! This additional css will work for your home page’s content, if you want to make that wider

    @media screen and (min-width: 30em) {
      .page-one-column .panel-content .wrap{
        max-width: 900px;
      }
    }

    For making images in your content full-width, you can assign them a custom class like shown in this screenshot

    And then use some css code like this

    .entry-content .wp-block-image.fullwidth img {
      width: 100vw;
      max-width: 100vw;
      margin-left: 50%;
      transform: translateX(-50%);
    }
    body {
      overflow-x: hidden;
    }
Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘Theme Options not showing up in current install’ is closed to new replies.