Forum Replies Created
-
Any link to the site… nope ๐
Kim
Is there a link to the site… nope ๐
Kim
You can add any link this way:
https://forum.graphene-theme.com/topic/facebooktwitter-icon-next-to-rss#post-2974
Kim
Thanks Kimmi..
You Have Star Quality..
Kim
This plugin might solve some of Your questions:
http://wordpress.org/extend/plugins/wordpress-seo/
Kim
Looking at
.block-buttonor blue button (view full post) turn red ๐.block-button, .block-button:visited {
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius:5px;
border-radius:5px;
border: 0px solid #CCCCCC;
display:block;
font:bold 12px arial;
text-decoration:none;
padding:5px 15px 6px 15px;
color:#FFFFFF;
text-shadow:0 -1px 1px #000000;
margin-top:10px;
position:relative;
float:right;
-moz-box-shadow: 0 0 0px #333333;
-webkit-box-shadow:0 0 0px #333333;
box-shadow:0 0 0px #333333;
background:#CE0B50;
background: -moz-linear-gradient(#CE0B50, #FF99CC) repeat scroll 0 0 transparent;
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#CE0B50), to(#FF99CC));
background:linear-gradient(#afaeae, #6E6E6E);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#afaeae', endColorstr='#6E6E6E'); /* for IE */
-pie-background: linear-gradient(#CE0B50, #FF99CC);
}
.block-button:hover{
text-decoration:none;
color:#FFFFFF;
cursor:pointer;
background:#FF99CC;
background:-moz-linear-gradient(#FF99CC, #CE0B50);
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#FF99CC), to(#CE0B50));
background:linear-gradient(#FF99CC, #CE0B50);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FF99CC', endColorstr='#CE0B50'); /* for IE */
-pie-background: linear-gradient(#FF99CC, #CE0B50);
}Kim
Well, it looks like You got it.
But if its the themes style.css core file changes will be overwritten when You update the theme!
(read: think wise think child theme)
Looking at the blue button is real fun ๐
.block-button, .block-button:visited {
-moz-border-radius: 5px 5px 5px 5px;
-webkit-border-radius:5px;
border-radius:5px;
border: 0px solid #CCCCCC;
display:block;
font:bold 12px arial;
text-decoration:none;
padding:5px 15px 6px 15px;
color:#FFFFFF;
text-shadow:0 -1px 1px #000000;
margin-top:10px;
position:relative;
float:right;
-moz-box-shadow: 0 0 0px #333333;
-webkit-box-shadow:0 0 0px #333333;
box-shadow:0 0 0px #333333;
background:#afaeae;
background: -moz-linear-gradient(#afaeae, #6E6E6E) repeat scroll 0 0 transparent;
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#afaeae), to(#6E6E6E));
background:linear-gradient(#afaeae, #6E6E6E);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#afaeae', endColorstr='#6E6E6E'); /* for IE */
-pie-background: linear-gradient(#afaeae, #6E6E6E);
}
.block-button:hover{
text-decoration:none;
color:#FFFFFF;
cursor:pointer;
background:#D4D4D4;
background:-moz-linear-gradient(#D4D4D4, #737373);
background:-webkit-gradient(linear, 0 0, 0 bottom, from(#D4D4D4), to(#737373));
background:linear-gradient(#D4D4D4, #737373);
filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#D4D4D4', endColorstr='#737373'); /* for IE */
-pie-background: linear-gradient(#D4D4D4, #737373);
}Color codes You decide ๐
Kim
In reply to: HELP WITH FULL TEXT IN POSTINGS INSTEAD OF "CONTINUED READING"
April 20, 2011 at 9:43 pm #13846If You use CSS code in Custom CSS or Child Theme style.css its easy to change
any font on the site: (Change only one place)
This is Your CSS for post title right now:
h2, h2 a, h2 a:visited {
font: 18px arial;
}Edit: And this is mine:
h2, h2 a, h2 a:visited {
font-family: georgia,verdana,tahoma,arial;
font-size: 20px;
padding-bottom: 4px;
}Just to show You another way or more options ๐
Kim
