CSS code
-
Hello everyone,
1. can you help to find a CSS code that allows me to control the size of the text in the feature (in the home page) & entire text?
2. and how can i control the weadth of text? cause it’s bigger than what i want.
I use wordpress.com theme called “Expound” and this is my website
http://www.alkunnash.comThe blog I need help with is: (visible only to logged in users)
-
It looks like you have two styles in your custom CSS that are changing the font size across most of your site already:
p { font-size: 13px; font-family: Tahoma, Verdana, Segoe, sans-serif; } body { font-size: 14px; font-family: 'Century Gothic', CenturyGothic, AppleGothic, sans-serif; }The first one makes all paragraphs 13px, and the second one makes any text on the site at all 14px (unless something else overrides either of them.
If you want to make all of the text larger or smaller, I’d suggest removing those sizes. Then use the font size settings under My Site > Customize > Fonts.
If you need to change just the featured content, try this CSS:
.featured-content { font-size: 18px; }(you can adjust the size as needed)
2. and how can i control the weadth of text? cause it’s bigger than what i want.
I’m not sure what you mean, can you give me an example?
- The topic ‘CSS code’ is closed to new replies.