davidgrahamsites
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Zerif Lite] Background image responsive?Place this is your child theme’s style.css at the very bottom and see if it fixes your problem.
body.home.blog.custom-background {
background-size: cover;
}Is that what you are hoping for?
Forum: Themes and Templates
In reply to: [Zerif Lite] Background image responsive?Are you saying that you want the background image to cover the entire viewport, behind the text? Eliminate the white header section and the various beige etc sections in between?
Forum: Themes and Templates
In reply to: Vulcan theme = mobile friendly ?I don’t know that it’s possible. With Artisteer you can make something similar, though. Have you used the software before?
Thanks again because I would like to know that little bit for the future ??
What was the solution out of curiosity?
Forum: Themes and Templates
In reply to: [Enigma] font changeSorry about that I keep forgetting not to put a sig in
Little Edit Button?
Forum: Themes and Templates
In reply to: Twenty Fourteen Images Stretching in Posts and PagesIn other words when you insert the photo using the media library, it distorts the image by means of stretching?
Here’s what you can do:
in your style.css of your child theme, or the parent, add this selector:img.alignnone.size-full.wp-image-378 {
max-height:none;
}Did that work for you?
Please advise,
DavidForum: Themes and Templates
In reply to: [Jolene] how to change font sizeTo remove the first category listing, add this code to the bottom of your style.css file:
h1.archive-title { display: none; } h1.entry-title { font-size: .825em; text-align: center; display: block; }
Does that help at all? Please advise
[ Signature redacted ]
Forum: Themes and Templates
In reply to: [Enigma] font changeI had a similar problem. I solved it on my clients site by means of “Easy Google Fonts,” a free typography plugin that allows you to control the typography of individual elements and utilize web fonts in one package. I used the typography controls under appearance menu to customize a header tag that I only used for the tag line, and once styled as I wanted it, added the appropriate css selector to my style.css file.
Basically I did a combination of using Chrome + CTRL+SHIFT+C (web dev tools) and Easy Google Fonts to figure out exactly what should go into my style.css file.
That isn’t a direct answer, but it’s not horsefeathers at least!
Best,
[ Signature redacted ]Forum: Themes and Templates
In reply to: [Virtue] Scrolling list of clients?Oops here is the other link that I meant to post:
Forum: Themes and Templates
In reply to: [Virtue] Scrolling list of clients?I think you are looking for a marquee effect. Gopiplus has that functionality. Is that the effect you are going for? Please advise.
https://www.ads-software.com/plugins/image-horizontal-reel-scroll-slideshow/
https://www.ads-software.com/plugins/image-horizontal-reel-scroll-slideshow/
Forum: Themes and Templates
In reply to: [Hueman] Favicon flickers and reloadWhat device and browser are you using? I think that tends to be a chrome issue.
Forum: Themes and Templates
In reply to: [Pure & Simple] Centering ContentDoes that help at all?
Please advise ??Forum: Themes and Templates
In reply to: [Pure & Simple] Centering Content<p class=’cntrp’>It depends – if it is a block element like text and you extent the width of the content to 100% of the screen, for example this paragraph, you could use the CSS below.</p>
p.cntrp {
text-align: center;
width: 100%;
}<p class=’padded’>Alternatively, you could use padding:</p>
p.padded {
padding: 100px;
}
/* Gives 100px of padding all around the inline element */