By Jeannie-2 on
Please tell me is it in the style sheet where you adjust font size for page content? And will that affect block font size too because I don't want it to.
Thanks
Please tell me is it in the style sheet where you adjust font size for page content? And will that affect block font size too because I don't want it to.
Thanks
Comments
=-=
you have to target css in the style sheet yes. however, if you want to target specific area you can do so with specific selectors which can also be grabbed from viewing the rendered source of the page you want to alter.
I'm sorry, I don't understand
I'm sorry, I don't understand you from 'if you want to target...' How do I simply change font size in page content, I don't see 'page font size' or anything like it so at a loss.
Thanks
=-=
use the firefox browser and the firebug addon to inspect the elements.
there is no single declaration that will change just what you want, you will have to target that ONE element and be more specific in the syle.css file.
again, viewing the source of teh rendered page will help you identify the div id / class or whatever you need and working with the css tutorials at w3cschools.com will help as well.
if you want someone to give specifics for your site a link would have to be provided so someone else can use the tools available.
if necessary you can use HTML tags and the proper input format to alter text for the content area of a single page aswell.
Thanks. This sounds
Thanks. This sounds complicated and I wouldn't know where to start. I would need to do an sql/drupal dump in an email to someone to help get this sorted. I'm on local host I haven't got a link.
I'm having the same problem
The class selector for my main content is "content clearfix"
When i go into both of my styles.css (the one thats set up automatically and the second one created with pixture reloaded) and say i want to change the font on all paragraphs, i put into the styles.css sheet:
p.content clearfix {
font-family: "Arial", Helvetica, Verdana, sans-serif;
font-size: 14px;
}
but nothing happens (even after clearing the cache)
I've even tried:
p.content.clearfix {
font-family: "Arial", Helvetica, Verdana, sans-serif;
font-size: 14px;
}
and
p.content-clearfix {
font-family: "Arial", Helvetica, Verdana, sans-serif;
font-size: 14px;
}
and
p.contentclearfix {
font-family: "Arial", Helvetica, Verdana, sans-serif;
font-size: 14px;
}
but the paragraphs stay the same font?
Can anyone help me? Maybe i'm putting it in the wrong section of styles.css but to be honest i've put it in everywhere i can think of and it's still not working.