I have tried everything I can think of to chhange the font size in my storycontent. nothing I do makes any difference. I have edited the story.css and the index. nothing works.
I can change it using the <h*></h*> tags, but the size does not change. fo instance I can use the defined <h2> and it will put a box around it but not use the font size. it is like something has locked the font size. Here is my site so far.
http://uncooperativeblogger.com
Please, do avoid double posting your questions. It might take a while to get an answer as these forums are so busy, but we are all volunteers doing our best.
Firstly, this is not a WP issue but a html/css one. It is advisable that you do a little bit of research on css.
If you want to change the font-size, then add the following to the bottom of style.css
.storyContent p{
font-size:20px;
}
latinastyln
Member
Posted 8 years ago #
i have this in my coding and my links are tiny..
any other suggestions
m
latinastyln - what is it you want ? Your font is the same size throughout it seems, so which do you need changing and how ?
#menu ul li {
background-image: url('images/arrow.gif');
background-repeat: no-repeat;
color: #000;
font-family: verdana, arial, helvetica, geneva, sans-serif;
font-weight: bold;
font-size: .7em; <---------------------
margin-top: 15px;
padding-bottom: 0px;
padding-left: 24px
}
Change the indicated number to .8 or .9 ?
Does that do what is needed ?
latinastyln
Member
Posted 8 years ago #
would that be for links in posts also..
See if you go to page chele..
you can see that the links there are really small.
m
No.
That change above does not affect posts at all. Really.
latinastyln
Member
Posted 8 years ago #
see that is what I have that is so small, I know that I am missing something easy but what it have no clue..
m
Your links are explicitly set to have a font size of 11 pixels. Remove that.
a {
color: #0000dd;
font-size: 11px; <-------------------
font-family: verdana, arial, helvetica, sans-serif;
text-decoration: none;
/* background : transparent; */
}
latinastyln
Member
Posted 8 years ago #
...this is still not helping with my links in my actual posts..
does any one have any ideas...
I am sorry to keep asking the same question..
however I still have not solved my issue..
thanks so much for the help..
m
try this maybe?
.post a {
font-size: ##px;
}
latinastyln
Member
Posted 8 years ago #
...oh my gosh i fixed it ..
yeah..
....
thanks so much everyone..
m