Interested in new theme Hemingway Rewritten
-
-
-
-
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.)
-
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.
-
-
-
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?
-
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. :)
-
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 :)
-
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.
-
@meghanandchris, sorry, this thread is not about. Oxygen. I confused myself, you are asking about Hemingway.
I’m working on that for you.
-
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.
-
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
-
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; } -
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
-
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; } -
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? -
@blogloverinery , add the following to get rid of that color.
.site-header { background-color: rgba(0, 0, 0, 0); } -
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.