MarieJoJones
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [VerySimpleStart] Changing menu hover colorDoes it work?
Forum: Themes and Templates
In reply to: [VerySimpleStart] Changing menu hover colorTry this
#mainnav ul li a:hover { color: red; }
or whatever color you want #000000. I tend to use red and yellow for quick test
Forum: Themes and Templates
In reply to: [VerySimpleStart] Changing menu hover colorWhat’s your site address?
Forum: Themes and Templates
In reply to: Paragraph font doesn't workOn your contact page, the form uses Arial
input, textarea, keygen, select, button { text-rendering: auto; color: initial; letter-spacing: normal; word-spacing: normal; text-transform: none; text-indent: 0px; text-shadow: none; display: inline-block; text-align: start; margin: 0em 0em 0em 0em; font: 13.3333px Arial; }
By the way your site really looks nice. Gruezi.
Forum: Themes and Templates
In reply to: Paragraph font doesn't workIn journal, coming soon is set to
body { font-family: 'Raleway',sans-serif; font-size: 13px; line-height: 23px; color: #8d8d8d; font-weight: 400; background-color: #f5f5f5; }
So this is what you need to change to use Oxygen and set the size. For line-height, I recommend a ratio rather than pixel size.
Forum: Themes and Templates
In reply to: Paragraph font doesn't workThe text is not in paragraphs, strangely, it’s in h2…
Right now it’s set at 18px with 32px line-height. Try this but you might have to make some adaptations if h2 is used elsewhere. at 10px I can’t read the text, so I’d recommend your using 12px.
`
h2 {
font-size: 12px;
line-height: 1.75;
}Forum: Themes and Templates
In reply to: Paragraph font doesn't workOK will try.
Forum: Themes and Templates
In reply to: Paragraph font doesn't workWhich font do you want for paragraphs?
Forum: Themes and Templates
In reply to: Paragraph font doesn't workWhat’s your site address?
Forum: Themes and Templates
In reply to: Paragraph font doesn't workWhat’s your site address?
Forum: Themes and Templates
In reply to: [Sydney] Change Footer Font?Glad it worked. For color, yes, customizer settings take precedence.
Forum: Themes and Templates
In reply to: [Sydney] Change Footer Font?Don’t know this plugin but assume you have a way to tell it to use Roboto.
Then in your style.css add this:.site-footer, .site-footer a { font-family: 'Roboto', 'Helvetica Neue', sans-serif ; font-weight: 400; color: #000000; }
Change 000 in color to what you need. And if you want bold Roboto use 700 for font-weight.
Forum: Themes and Templates
In reply to: [Sydney] Change Footer Font?What’s your site address?
Forum: Themes and Templates
In reply to: [Kerli lite] How to increase the width of the template?Beware that some themes also get their content size from functions.php in such code as
if ( ! isset( $content_width ) ) { $content_width = 730;
So if such setting is present, with 1200px wide and 2/3 of content width, you should set such value to 800px.
Moreover, if you have full content-width featured images, it would be a good idea to set their max-width to 800px in functions.php with code such as:
add_theme_support( 'post-thumbnails' ); set_post_thumbnail_size( 150, 150, true ); // Default Thumb add_image_size( 'featured-post-image', 800, 600, true ); // Featured Post Image
Forum: Themes and Templates
In reply to: [Kerli lite] How to increase the width of the template?Haven’t used this theme but looking at the demo you could use:
.container { width: 1200px; }
It’s set to 960px and the sidebar is 33.3% so it should resize accordingly.