Syahir Hakim
KeymasterKuala Lumpur, Malaysia
When not perched on my workspace, I tremendously enjoy hiking in the bushes and climbing mountains. They serve as much-needed refuges from the pretense of cities.
Forum Replies Created
-
Admin
Quote:Are people able to comment on video or other forms on format besides the standard? If so please tell me how I can fix this issue.People are still able to comment on those posts when they view the posts, just that the posts count is not displayed for those posts when they are listed.
Admin
You can also just modify the placement of the header text using custom css.
Admin
Hi there,
Which WordPress version are you using? Have you modified any of the Graphene or Graphene Mobile’s themes files directly?
Admin
The
<head>section is defined in theheader.phpfile in each section. If you want to add something to the<head>section, use the ‘wp_head’ action hook instead of directly editing the theme’s file.You can learn more about action hooks here: http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/
Admin
Use Captcha and Akismet. Those spammers won’t have a chance.
Admin
Quote:1) I would like to know if there is a code I can use in the style sheet to prevent the post date (currently hidden on my site) to be shown on the sticky post. I do want the date to be shown on all other posts, but not on the sticky post.Try adding this code to the Custom CSS option:
.sticky .date {
display: none;
}Quote:2) So my second question is: is there anyone who can make a child theme for my site? I am willing to pay for it ofcourse!Contact me using the contact form on my website and we’ll discuss the terms.
Admin
I would say that the theme’s
editor-style.cssis being deprived of love lately from the developers, due to other more important things. When the weather is nice and the coffee is having its effect, it may finally get some (overdue) attention!Admin
In reply to: Apologize for Mass Questions (but one last-crucial-one)
September 27, 2011 at 10:19 am #17138If you’re referring to the ad in the bottom widget area, try this:
#sidebar_bottom #text-25 {
background: none;
box-shadow: none;
-moz-box-shadow: none;
-webkit-box-shadow: none;
}How do I know which element to target in the CSS? Firebug.
Admin
Try this:
#sidebar_bottom #text-25 {
width: 300px;
}Admin
bobsled,
Raindance is using a custom post navigation, while you’re using Graphene’s default post navigation. The CSS codes will be different.
Try adding this to your Custom CSS option:
.post-nav {
text-align: center;
}
#previous {
float: none;
margin-left: 0;
display: inline;
padding-right: 10px;
margin-right: 10px;
border-right: 1px solid #ccc;
}
#next-post {
float: none;
margin-right: 0;
text-align: left;
}
