Changing font and content width
-
Hi there,
I have two questions – I am a bit of a novice when it comes to CSS. I am using theme Massive Press.
1. How do I change the font family of the main text on the whole blog and also Justify the main text on the whole blog?2. How do a change the width of the main text area and the side bar areas?
Hoping someone can help.
The blog I need help with is: (visible only to logged in users)
-
Oh, sorry, i also forgot to ask how I change my headers of all posts to bold font?
Thank you
-
How do I change the font family of the main text on the whole blog
I would recommend using Appearance > Customize > Fonts for a change like that.
How do I Justify the main text on the whole blog?
I see that you figured this out using the following custom CSS:
#content { text-align: justify } -
2. How do a change the width of the main text area and the side bar areas?
I checked http://cultnoisemagazine.wordpress.com/ and I see that you’re using the Massive Press theme. I don’t see any sidebars on your posts right now. If you change the max-width for the container class, it will expand the main column width. When you do this, you should also adjust the Content Width setting in the Appearance > Customize > CSS editor panel (probably 1034 would be good for this example).
Here is an example CSS snippet to get you started:
.container { max-width: 1060px; }Massive Press is a premium theme, so if you have further questions, please post them at http://premium-themes.forums.wordpress.com/forum/massive-press
-
How I change my headers of all posts to bold font?
You can change the individual post titles to bold in the Massive Press theme by adding the following CSS to your Appearance > Customize > CSS editor:
.entry-title { font-weight: 700 !important; }
- The topic ‘Changing font and content width’ is closed to new replies.