Warrior Forum - The #1 Digital Marketing Forum & Marketplace

Warrior Forum - The #1 Digital Marketing Forum & Marketplace (https://www.warriorforum.com/)
-   Website Design (https://www.warriorforum.com/website-design/)
-   -   How To Increase Font Size in Wordpress? (https://www.warriorforum.com/website-design/525115-how-increase-font-size-wordpress.html)

warriorspirit786 19th January 2012 10:25 AM

How To Increase Font Size in Wordpress?
 
I want to know how i can change the font size of text in my wordpress posts?

I have checked in the Wordpress Editor but in the "Paragraph Dropdown Box"
it only gives me options for the H1,H2,H3 tags etc up to H6 to change the text size.

All help appreciated.

thanks
T

AnniePot 19th January 2012 10:35 AM

Re: How To Increase Font Size in Wordpress?
 
You need to edit the css style sheet.

warriorspirit786 19th January 2012 11:06 AM

Re: How To Increase Font Size in Wordpress?
 
Ok thanks, how do i do that Annie?

mojojuju 19th January 2012 11:33 AM

Re: How To Increase Font Size in Wordpress?
 
You really need to read up on CSS. Somebody could propose an answer and you could implement it, but if you don't know anything about CSS it's very likely that you'll be back here with a question like, "Hey, I just made a small change to my CSS and now my site layout is all messed up. Please help!".

This looks like a good place to start CSS Introduction

Istvan Horvath 19th January 2012 11:49 AM

Re: How To Increase Font Size in Wordpress?
 
Quote:

Originally Posted by warriorspirit786 (Post 5450208)
I want to know how i can change the font size of text in my wordpress posts?

I have checked in the Wordpress Editor but in the "Paragraph Dropdown Box"
it only gives me options for the H1,H2,H3 tags etc up to H6 to change the text size.

Honestly, if you have to ask... you shouldn't do it... because it is a difficult task for those lacking any knowledge of web design/CSS.

Get another theme if you are unhappy with the font size.

warriorspirit786 19th January 2012 12:05 PM

Re: How To Increase Font Size in Wordpress?
 
Thanks for your replies.

Is it possible to edit the style sheet for each individual post in wordpress?

retroid 19th January 2012 12:29 PM

Re: How To Increase Font Size in Wordpress?
 
^ Yes it is possible, but that depend on how the theme coded.

dd1153 19th January 2012 12:30 PM

Re: How To Increase Font Size in Wordpress?
 
Install the plugin TinyMCE Advanced and you can do it on your visual page.

cjbmeb14 19th January 2012 12:34 PM

Re: How To Increase Font Size in Wordpress?
 
I have used TinyMce advanced plugin. It is an excellent plugin and is very easy to use.
It has a lot of options that you can select to display or not.
You can even use it to display smilies.

Istvan Horvath 19th January 2012 12:37 PM

Re: How To Increase Font Size in Wordpress?
 
Quote:

Originally Posted by warriorspirit786 (Post 5450970)
Thanks for your replies.

Is it possible to edit the style sheet for each individual post in wordpress?

In theory... yes. Although if you have 14,000 posts and want different style for each of them - you'd end up with a huge, over-bloated CSS file.

FYI: one of the benefits of using a CMS system (like WP) is the uniform style, layout and design of the whole site, i.e. every post. Why would you want to mess with that? (especially, if lacking the knowledge?)

cassiegetty 19th January 2012 12:52 PM

Re: How To Increase Font Size in Wordpress?
 
it really depends on your theme. install TinyMCE Advanced plugin, it might help you make your desire font.

ritchierich 19th January 2012 01:05 PM

Re: How To Increase Font Size in Wordpress?
 
Yes, Install the Ultimate TinyMCE Plugin.

If you really want a fine grain solution, edit the stylesheet.css.

warriorspirit786 19th January 2012 02:43 PM

Re: How To Increase Font Size in Wordpress?
 
I have installed the Ultimate TinyMCE plugin but i have a problem.

I am able to increase the size of the font for the particular piece of text i want it for but when i save the changes, it reverts back to the original size again.

Is there a particular setting i need to activate to get it to work?:confused:

thanks

IM-software 19th January 2012 06:49 PM

Re: How To Increase Font Size in Wordpress?
 
Hi,

if you don't master CSS, as suggested by Annie Pot, you can increase the fonts' size all over the site by editing the "header.php" file, from within the: Appearance > Editor tab, and add a simple line of code in the head:
<style type="text/css">body{font-size:13px;}</style>
Or any other size: 14px, etc...

If you want to increase the size of specific pieces of text, you can use: <span style="font-size:13px;">Your piece of text</span>

warriorspirit786 20th January 2012 03:22 PM

Re: How To Increase Font Size in Wordpress?
 
Thanks for your reply IM-software.

Where should i insert this code? <span style="font-size:13px;">Your piece of text</span>

Can i insert it in the individual post itself via html?

thanks

Sharyn Sheldon 20th January 2012 03:30 PM

Re: How To Increase Font Size in Wordpress?
 
I agree that you shouldn't mess with the CSS if you don't know it. You can hire someone to do it for you, get a new theme, or learn a little basic html.

I tried the CK Editor plugin, which is like Tiny MCE, and I found that it adds too much code. Make one change and everything can get messed up. Also, if you switch back and forth between the visual editor and html, the code can go all wonky.

I suggest learning a little basic html and not trying to do anything too fancy. The code that was suggested above for the font size is used in your html editor box, not the visual wysiwyg one. That's about as simple as you can get.

Good luck!

warriorspirit786 20th January 2012 03:58 PM

Re: How To Increase Font Size in Wordpress?
 
Thanks for your reply Sharyn.

If all it takes is adding the above short code to my text in the html box in my post, then i cant understand how its going to mess up my whole sites CSS file.

I will try the above and see if it does the job for me. All im trying to do is make my affiliate links appear slightly bigger than the rest of the text in my post so they stand out a bit.

Sharyn Sheldon 20th January 2012 04:18 PM

Re: How To Increase Font Size in Wordpress?
 
Quote:

Originally Posted by warriorspirit786 (Post 5459337)
Thanks for your reply Sharyn.

If all it takes is adding the above short code to my text in the html box in my post, then i cant understand how its going to mess up my whole sites CSS file.

I will try the above and see if it does the job for me. All im trying to do is make my affiliate links appear slightly bigger than the rest of the text in my post so they stand out a bit.

The CSS file contains code for the whole site. So if you make a change there without knowing what you're doing, it can mess up everything.

However, if you put the html into an individual post, it will just affect that post. Since all you want to do is make those links bigger, then using the html editor is definitely the way to go.

I'm still at a pretty basic level with html, but I've found that you don't really need much.

warriorspirit786 20th January 2012 04:45 PM

Re: How To Increase Font Size in Wordpress?
 
Thanks Sharyn.

I have now managed successfully to make my links bigger in my posts with the html code as above and it has worked perfectly.

Im now a bit more confident with html and it doesnt seem to be too hard as most people make it out to be.

Thanks for all the responses.

Problem NOW FIXED!

TimothyReeves 1st August 2012 08:34 PM

Re: How To Increase Font Size in Wordpress?
 
Hi< I have the same problem, I downloaded it and it does not change to #14 font. Did you ever find a fix? Thanks, Timothy..

vgvetter 1st August 2012 10:16 PM

Re: How To Increase Font Size in Wordpress?
 
WordPress has several TinyMCE plugins. Advanced, and Ultimate have already been mentioned. Another is Deans. To be able to adjust font style and size on a per page basis go to Dashboard >> Settings>>xxxTinyMCE and make sure those options are active...SAVE

Have tried those three and found that at least 50% of the time parts of the text do not hold styling.. It may take 4 or 5 updates to get things right... Frustrating and time consuming, but for me lots easier than getting lost in CSS.

Miteshaegis 6th August 2012 07:18 AM

Re: How To Increase Font Size in Wordpress?
 
You learn about CSS (cascading style sheet ) in detail.
You can easily increase your font size yourself.

mayankgangwal 7th August 2012 05:02 AM

Re: How To Increase Font Size in Wordpress?
 
Simple go to the css and edit it from there.

interserverx 7th August 2012 07:07 AM

Re: How To Increase Font Size in Wordpress?
 
Great solutions for you can install Ultimate TinyMCE Plugin .

paulie 10th August 2012 09:58 PM

Re: How To Increase Font Size in Wordpress?
 
You do not need to know anything about css or html. Search the wordpress plugins directiry as there are a number of free wp editor replacements which allow you to change your font sizes easily. I went through this myself. Everyone told me the best way was to learn css r html. Not needed.

James King 10th August 2012 10:33 PM

Re: How To Increase Font Size in Wordpress?
 
I had the same problem. Luckily I found out about TinyMCE. You'd think something like this would come standard with wordpress.

The thing to remember about TinyMCE, is that if you are using any of the H1-H6 fonts, make sure you don't select any font size. Or else your H1 font could be 6px, which defeats the purpose.

ronc0011 12th August 2012 02:32 PM

Re: How To Increase Font Size in Wordpress?
 
editing the CSS file would make site wide changes However if there is just some text that you want different then you can just apply a style as suggested by IM-software. A style can be applied to most objects like paragraphs or heading tags etc. so for instance if you just want your post to be different than the rest of your blog you can create it using the HTML view in the WP editor do something like this...
Code:


<p style="font-family:Trebuchet MS;font-size:16px;font-weight:bold;color:Red;">
This would be your paragraph text where your style would be applied. on the other hand if you just want to make one word different then you would use the span tag like so.
 
Using the span tag to make one word different this word needs to be in a
<spanstyle="font-family:Arial Black;font-size:22px;color:Red;"> Big red font</span> so it stands out
</p>

One of the issues with tweaking your CSS file is that browsers default to certain behaviors and it's very common that when you go and change something especially something that changes the size of things then suddenly other things don't fit anymore and it makes things move around messing up the layout of your page However just changing the font size shouldn't cause any problems unless you are thinking of something altogether crazy.

thememass 15th August 2012 10:33 AM

Re: How To Increase Font Size in Wordpress?
 
You should try to inspect the element your want to edit its css. FireBug or Inspect function on Google Chrome is good for you, I think.

Sidv220 15th August 2012 11:59 AM

Re: How To Increase Font Size in Wordpress?
 
You can either install TinyMCE plugin or use CSS for styling your fonts.

ericfox 15th August 2012 11:55 PM

Re: How To Increase Font Size in Wordpress?
 
According to me, I wouldn't use the <font tag> since search engines prefer reading your tags from the CSS style file.

Just create a simple class and add the following code for example:

Code:
.font {font-size: 12px;}
That should work.

benroger403 16th August 2012 12:55 AM

Re: How To Increase Font Size in Wordpress?
 
I think you should do it with CSS.

AllenMack 8th June 2016 01:28 AM

Re: How To Increase Font Size in Wordpress?
 
:O Whattttt well this was my reaction a while ago, when i was learning WordPress and i had the same problem :D i would suggest just do it with CSS. If you want to increase the font size of whole website you can just do it with

p { font-size: 20px; }
h1 { font-size: 40px; }
h2 { font-size: 35px; }
h3 { font-size: 30px; }
h4 { font-size: 25px; }
body { font-size: 20px; }

You can change the digits according to the size you required. and yes you need to add these on your stylesheet which you can found at Appearance > Editor > Stylesheet.css

and if you want to increase the font size separately for the specific part or line you can just do it like:

This paragraph is normal, <span style="font-size:25px">but this one is big</span>
and that's it :)

Hope it helps

johnbrent606 11th June 2016 02:32 AM

Re: How To Increase Font Size in Wordpress?
 
There are many plugins are available for resizing the font size in wordpress. For eg - WP-Font-Resizer,
Visual Editor Font Size, Zoom, Visual Developer Custom CSS, etc....


All times are GMT -6. The time now is 07:22 PM.