Interested in new theme Hemingway Rewritten

  • Unknown's avatar

    Will do – many thanks :)

  • Unknown's avatar
  • Unknown's avatar

    Ah – thank you! It’s getting there, gradually (with your help!) :)

  • Unknown's avatar

    Does Hemingway Rewritten support a static front page option? If yes, does it allow me to custom design the layout/content/widgets on this theme? (note: I already know how to create the front page.)

  • Unknown's avatar

    Yes, it supports a static front page, and you can style it with CSS. Since it is a responsive width theme, some layout changes may be challenging and require the use of CSS media queries.

  • Unknown's avatar

    Thank you

  • Unknown's avatar
  • Unknown's avatar

    I am new at this and want to have my own url with no wordpress in it. Under General Settings, there is no field for a Root install to its own directory. Any suggestions?

  • Unknown's avatar

    You can have a custom domain name and map it to your site here so that it appears with your own URL instead of the normal WordPress.com subdomain URL. Here are two relevant support documents on doing just that.

    All About Domains
    Mapping an Existing Domain (one you already have)

    In the future, when asking questions where there isn’t a current thread on that issue, can we ask that you start a new thread on the topic so as to prevent confusion for those coming to older threads in the future. Many thanks in advance. :)

  • Unknown's avatar

    How would I move the side bar to be at the bottom instead? I dont know anything about coding so I need step by step :)

  • Unknown's avatar

    Hi @meghanandchris, I’m not seeing Oxygen on any of the sites associated with your username. It would be very useful to have a link to the site you are talking about, and to know which sidebar you are talking about. Oxygen has two sidebars, one on the left and one on the right. Are you wanting to move the left, right or both?

    Below a width of 768px, all the sidebars move to the bottom of the page, so we can create a media query in the custom CSS that will do that at 768px and wider.

  • Unknown's avatar

    @meghanandchris, sorry, this thread is not about. Oxygen. I confused myself, you are asking about Hemingway.

    I’m working on that for you.

  • Unknown's avatar

    Add the following CSS to the bottom of any custom CSS you have:

    @media screen and (min-width: 800px) {
    .site-content .widget-area {
            width: 100%;
        }
        .site-main, .content-area {
            margin-right: 0;
        }
    }

    And in the Content Width field below the CSS edit area at Appearance > Customize, enter a width of 1040. You may have to reinsert your images to take advantage of the new wider content area.

  • Unknown's avatar

    Greetings fellow WordPressians!

    In regards to Hemingway Rewritten, I was wondering if anybody knew how to delete the page titles as they appear on each individual page? I’m satisfied with the way they appear on the main menu, but seem both redundant and cumbersome on the pages themselves.

    Thanks guys!

    Brett

  • Unknown's avatar

    Hi there, to hide the titles that appear above the content on static pages, such as about, Go to Appearance > Customize > CSS, delete all the informational text in that window, and paste in the following custom CSS.

    .page .entry-title {
        display: none;
    }
  • Unknown's avatar

    Hi,

    This forum is very help. I want to do 2 things.

    1) Take away the black box that appears in the header part so that it does not cover parts of my header OR light it.

    2) To make the content along with the sidebar area extend all the way across the page so that it is the same width (or there about) as the header

  • Unknown's avatar

    Hi @thecurvygirldiva,

    1) This does not require CSS. Go to Appearance > Customize > Site Title and uncheck the Display Header Text box and then save your changes.

    2) The following will do this, but when you apply it, take a look at your about page. The text area should typically be no wider than 650px for easy readability, and yours is going to expant to infinity. If I maximize my browser window on my 27″ desktop monitor, the content on about page is 1300px in width.

    .site-content {
        width: 100%;
        max-width: 95%;
    }

    The existing theme has a maximum overall width of 1040px. What I might suggest instead would be to take that to about 1200px with the following CSS.

    .site-content {
        width: 100%;
        max-width: 1200px;
    }
  • Unknown's avatar

    Hi! Two questions:
    – It looks like the header image I uploaded has a gray shade over it. Is there a way to remove this?
    – How do you change the color of the footer/sidebars?

  • Unknown's avatar

    @blogloverinery , add the following to get rid of that color.

    .site-header {
        background-color: rgba(0, 0, 0, 0);
    }
  • Unknown's avatar

    Hi all, I’m going to set this thread to resolved because it is getting too long and covering too many topics and will be confusing for those coming to it in the future.

    Please feel free to start a new thread for help on CSS customization of Hemingway Rewritten.

  • The topic ‘Interested in new theme Hemingway Rewritten’ is closed to new replies.