Forum Replies Created
-
Mod
If you want to get rid of the very top bar, where the RSS feed icon is, add this to your custom CSS:
#top-bar {display:none;}If you mean the main navigation bar just under the header image, try this:
#header-menu-wrap {display:none;}Good luck and welcome aboard,
Ken
Mod
Please put codes between backticks (under the tilda, upper left-hand corner of the keyboard).
Anyway, see where the script you posted says
<noscript>? At the end of it there should be another tag (a closing tag) that says</noscript>. If you copied the code from the Foodbuzz website, it’s possible that you didn’t copy the entire code. You’ll need to make sure you have copied and pasted the entire code into your widget.Ken
Mod
Oh, I got you. It might not be terribly complicated. You want each tab to point to a box (technically, a “pane”) below and fill it with certain content. This would be very cool if you can get it to work.
Looking at your page, I see that the CSS is where it should be. However, I don’t see that you’ve loaded the jQuery tools in the header. This should work:
And trying to add the jquery tools in a few ways
1) putting it in function.php as an add action to wp_headIf you look at the source of the demo site you mentioned, it’s one of the first items loaded. For some reason, you have it loading in the footer. What does your functions.php file look like?
I’m fairly a noob at jQuery and javascript, either, so none of my advice may work.
Ken
Mod
Please place code between backticks, please (under the tilda key in the upper left-hand corner).
Wow, what you are trying to do is very complicated. Do you want to do this place of Graphene’s navigation menu, or in addition to it? I am not sure how you could accomplish the first one, and I am not sure of what purpose the second would serve.
I can help you with this one, though:
Hitting the different tabs does nothing.
That’s because they’re not linked to anything. Each tab is coded like this:
<li><a href="#">Tab 1</a></li>Ken
Mod
Is it possible to remove the links to the previous and next posts?
Add this to your custom CSS:
.post-nav {display:none;}Glad you found the article helpful.
Ken
Mod
PHP is not that difficult if you are trying to do something simple and you have good guidance.
Here’s a good intro to action hooks: http://www.nathanrice.net/blog/an-introduction-to-wordpress-action-hooks/
I’ve been playing around with them a little on my blogs and may write a tutorial about them sometime soon. If you have questions, let me know.
Ken
Mod
I want to have an image next to the post’s title instead of the date. Is this possible?
It is probably possible using a child theme and using one of WordPress’s or Graphene’s many action hooks. How comfortable are you coding in PHP?
I want to have a static home page that’s a post, not a page. Is that possible?
I’m not quite sure why you would want to do this (you might want to take a look at this page first), but no, not really. That’s a WordPress function that always pulls up a list of pages when you select “static home page” in the Reading Settings.
That said, you could always write a post for your front page and make it a sticky post, so it would look rather like your front page.
Welcome aboard,
Ken
Mod
Yes, you can put adverts on your site. (This is called monetizing your blog.)
Go to http://www.google.com/adsense to find out how.
Ken
Mod
Yes, you can do this. The correct code goes something like this:
a:link {color:#FF0000;}
a:visited {color:#00FF00;}
a:hover {color:#FF00FF;}
a:active {color:#0000FF;}Check out this page: http://www.w3schools.com/css/css_pseudo_classes.asp. Be sure to get them in the correct order in the CSS or they won’t work properly.
To see a really extreme (and extremely cool) example of what you can do with these, see this site: http://www.kremalicious.com/.
Ken
Mod
I added it (temporarily, at least) to my blog here: http://blog.kjodle.net/ setting the width to 180px.
