Forum Replies Created
-
Sorry no link! (Update Your forum profile)
Then again blind answer:
http://
www.yoursite.com/wp-admin/options-discussion.phpKim
Let me add this:
I found that You have this (.post font) code in two versions:
(Maybe You have some font codes in Theme fonts menu!
Then again the statement might be twice in style.css)
.entry-content p, .entry-content ul, .entry-content ol, .comment-entry ol {
font-family: 'Trebuchet MS';
font-size: 1.1em;
}.entry-content, .entry-content p, .slider_post_entry p, .entry-content ul, .entry-content ol, .comment-entry ol {
color: #2C2B2B;
font: 12px/20px arial;
}Maybe this one will do:
.entry-content, .entry-content p, .slider_post_entry p, .entry-content ul, .entry-content ol, .comment-entry ol {
color: #2C2B2B;
font-family: georgia,verdana,tahoma,arial;
font-size: 14px;
}The first font name & size is Your choice ๐
Kim
Then again, who is ๐
One is to make a Child Theme, thats the wise part:
Read first post carefully:
https://forum.graphene-theme.com/topic/how-to-modify-the-theme-using-a-child-theme#post-54
But based on Your answer, it just might be more easy to find this menu:
http://makeprofitfrom.com/blog/wp-admin/themes.php?page=graphene_options&tab=display
And look for something like User CSS, insert there.
Kim
Well, there are only five to eight fonts You need to change ๐
But why not have the tools to find the CSS codes You need.
Here goes:
Install Firefox & Firebug. Then right-click on some text and
You will find the code in the right pane of Firebug. From there
on it is easy to copy, paste and change Your CSS code. You can
also try to change the code before inserting on Your site.
Kim
You have:
.sidebar ul ul li {
line-height: 15px;
}Maybe try, say:
.sidebar ul ul li {
line-height: 10px;
}Kim
Any page or post in WordPress have (or can get) a slug name, you can link to. The job is to find Your blog’s slug name. You find the slug name when You edit the page. If You dont see it, goto top of page and edit monitor settings, show slugs.
By the way its named, Fast Secure Contact Form ๐
Have a nice day
Kim
.entry-content img, .child-page img {
border: medium none;
margin: 5px;
}Kim
If you like Georgia in posts, there is also h2 or post headline:
h2, h2 a, h2 a:visited {
font-family: georgia,verdana,tahoma,arial;
font-size: 20px;
padding-bottom: 4px;
}As for the button goes:
Its a little more tricky just to raise font size,
the button get bigger ๐ But can be adjusted..
.block-button, .block-button:visited {
background: -moz-linear-gradient(#BABABA, #6E6E6E) repeat scroll 0 0 transparent;
border: 1px solid #CCCCCC;
border-radius: 5px 5px 5px 5px;
box-shadow: 0 0 0 #42454A;
color: #FFFFFF;
display: block;
float: right;
font: bold 13px arial;
margin-top: 10px;
padding: 5px 15px 6px;
position: relative;
text-decoration: none;
text-shadow: 0 -1px 1px #000000;
}Wonder if You blog page have a slug name You can link to?
Kim
Well, You can remove button:
.block-button, .block-button:visited {
display: none;
}Kim
Your nav .menu:
#nav .menu li a, #nav .menu li a:visited {
font: 16px/24px arial;
padding: 0 6px;
text-decoration: none;
}Raise the number 6px in padding, say: 16px ๐
Kim
