deadaccount
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Hemingway] Remove whitespace just under the headerI didn’t understand your question completely. But I think you are referring white space under the navigation bar and the title on any page.
By default it is 100px and defined in css for .wrapper class like this:
.wrapper {
margin-top: 100px;
}
search for .wrapper and tweak the margin value as per your need.
But I strongly suggest to leave the original css stylesheet untouched and add your styling in separate css sheet which will override the respective default styles.You need a plugin which lets you write your own css on top of the default. For me it came with a lot of other stuff when I installed a plugin called ‘jetpack'(there will be others too).
So install Jetpack. Go to appearance -> edit CSS and paste the following code:
.wrapper {
margin-top: 100px;
}
change the value from 100px to whatever you want and preview and save the stylesheet.Forum: Themes and Templates
In reply to: [Hemingway] Reduced quality of header image?It seems a browser issue for firefox(could be my settings). It works fine in chrome, IE.
Thanks for the support…Forum: Themes and Templates
In reply to: [Hemingway] Reduced quality of header image?I tried increasing the resolution but it didn’t work. My screen resolution is definitely 1280px wide. It seems to me css/wordpress/browser quirk. Here is my website: polymathpunk
If you right click on header image and open it separately( view background image in firefox) you should notice the difference in the quality of image as you toggle between my actual page and the opened background image.
(image is 1280x416px)Forum: Themes and Templates
In reply to: [Hemingway] featured images bugs?Thanks. That fixed it for me.
Forum: Themes and Templates
In reply to: [Hemingway] Remove info from footerThose are default dummy widgets. Add one of the your own(it can be the same one as displayed dummy) and the dummy widgets will disappear.
You will have to add your own widgets to the 3 footers each to make dummies disappear. If you leave any footer blank, the dummy will appear again so at-least add one of your own widget to each footer.Forum: Themes and Templates
In reply to: [Hemingway] Custom accent color not respected everywhereSince you are using Jetpack, it allows you add your own css file(css editor).
When I faced similar issue, I loaded the page used firebug and created custom css selector for the particular widget and hard-coded my color.Forum: Themes and Templates
In reply to: [Hemingway] Excerpts on home pageI edited the code as Anders Noren said and excerpts are working but the read more links don’t appear. The excerpt ends with […]….
Is it the same case for you?