Forum Replies Created
-
Mod
Moved to Support.
Mod
The functions file is a .php file, not an .asp file. There should be some opening and closing php tags, and no line breaks.
It’s possible that your ftp client was set to the wrong type of mode. Your functions file should look like:
<?php
function graphene_modify_header_height(){
return 309;
}
add_filter('graphene_header_image_height', 'graphene_modify_header_height');
?>Mod
Yes.
In the css for that widget, you’ll need to set the background to the same background of your
#contentelement, and set the h3 element todisplay:noneE.g.,
#text-11 .sidebar div.sidebar-wrap {
background: [same as #content];
}
#text-11 h3 {display:none;}Not tested, but should work.
Mod
You are applying the class
.buttonto these elements, but that class is already defined in the Graphene style sheet and is used for “Read More” buttons. Thus, your social buttons are looking like “Read More” buttons. You need to delete that class from the code you entered for the social buttons.Mod
It really shouldn’t be pulling in the graphene style sheet. (The light styles is okay, however.) It may be something funky in your functions file.
Mod
In reply to: Remove wordpress title and tag from centre of header
February 24, 2012 at 5:58 pm #24915Go to Appearance >> Header and for “Display Text”, check the button marked “No.”
The text will be gone from the header.
Go to Settings >> General. For “Site Title” and “Tagline” enter the text you want search engines to recognize your site by. Because of the choice you made in the Header pane, this will not show up on your blog, but it will/should show up in most search engines.
Remember, you have no control over what search engines display or how they display it. You can only make it easier for them to find you.
Mod
Also, would anyone write me the method how to add such stylish buttons anywhere in one of my posts or pages?
The “Read more” button is class
.block-button. Whenever you add a link, just specify that the class isblock-buttonand it will have the appearance of that button.I’m not sure about the “Reply” button. Show me a page where this is and I can take a closer look.
Mod
Yes, you can put this in custom css.
To make a css rule affect only a certain page, just prefix any css declaration with the post id:
#post-1329 .slider_post {
background: url("image_URL");
}That basically tells your browser to apply that background to any object of class
.slider_postonly if it is part of an element with the id#post-1329.You would need to change to the correct post number, of course.
Mod
Mod
I see you have some share buttons now. Did you fix this the way you want it?
