Forum Replies Created
-
Mod
I’ve just installed a fresh WordPress 3.3.1 and the theme and I’m playing around with the images. I don’t have any plugins installed.
Well, that eliminates about 90% of what it could be.
I’m running locally.
Could be this, due to your PHP configuration, but the fact that it’s fine on TwentyEleven makes me scratch my head. (I’m not surprised about TwentyTen.) Maybe Josh or Prasanna or someone will have something more intelligent to say here.
Mod
This could be a plugin conflict. But it is impossible to tell without a link to your site. Give us a link to a post or page on which this is an issue and we can take a closer look.
Mod
Do you mean this page: http://www.yourfinancialaidoffice.com/articles-list/
In that case, the class of that page is
.page-id-4So you can use the
notpseudo class, like this:.entry-content a, .entry-content a:not(.page-id-4) {style elements}
.entry-content a:visited {style elements}Unfortunately, I don’t know that you can combine pseudo classes, so either you’re stuck with your visited link color on that page, or you’ll have to do everything like this:
.entry-content a {style elements}
.entry-content a:visited {style elements}
.page-id-4 .entry-content a {style elements}
.page-id-4 .entry-content a:visited {style elements}The advantage of using the
notpseudo class is that everything on that page will just use standard formatting, and you won’t have to redefine the styles for just that page, as you have to with the second method.Mod
You’ll need to create a child theme and then add a function to your child theme’s functions file.
There is a lot of information about creating a child theme on this forum. Take a look around.
Josh has a video tutorial here:
http://www.joshlobe.com/2011/10/video-tutorial-creating-a-child-theme-in-wordpress/
Prasanna has a template here:
http://www.prasannasp.net/graphene-child-theme-template/
Information on the function you need is here:
Mod
The link is there, but not the image. It could be a plugin conflict, or you could be doing something strange with your child theme’s functions file.
Your Linkedin social button links to the page with the icon, not to the icon itself, which could explain one of these problems, at least. (And it is naughty–you should never hotlink to image files. Just download the file and upload it to your blog.)
Mod
Use this code in your child theme style sheet or custom css:
.entry-content a {style elements}
.entry-content a:visited {style elements}Mod
Your excerpt it too long to allow the button to display. You can either style the slider text to make it smaller, or use a shorter excerpt, which is probably your best bet.
Mod
Just ask us to delete or move it.
But seriously, take a look at Kalin’s post list — it solved a lot of problems for me.
Mod
Moved to Support, since this is a support question.
@John: more people will see your request for help if you post in the correct section. Very few people look in “General Talk” since most of them want support, not just to talk.
BTW, this has been discussed previously in this forum, but I don’t remember if we came up with a satisfactory solution. If you only want this to be on the home page, you can try using the “Homepage Panes” option and then styling it with CSS. If you want it to be on all parent pages, then I’m not sure of a solution. One alternative would be to avoid parent pages altogether and use Kalin’s post list plugin. My tutorial is here:
http://blog.kjodle.net/2011/10/30/kalins-post-list-a-brief-tutorial/
Mod
In reply to: Show specific YouTube videos in sidebar widget based on the page/post being displayed
February 15, 2012 at 3:30 pm #24240Moved to Support.
