akabin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: domready IE8Just checking in to see if anyone had an idea on this. Thanks.
Forum: Fixing WordPress
In reply to: jquery pageload orderFinally figured it out. Just moved the function call from the header using pageload() to placing it before the close of index loop. Works like a charm now. Thanks for the wp_enqueue_script suggestion. I’m sure I’ll use that in the future.
Forum: Fixing WordPress
In reply to: jquery pageload orderAny chance a mod could move this over to WP-Advanced? Thanks.
If you want to remove ONLY the “Contact” title put this in that file instead:
#about-me-3000 widgettitle { display:none; }'
If that doesn’t work, add a “.” in front of widgettitle. Can’t remember my CSS exactly. ??
To get rid of the word “Contact” (which is what I think you’re trying to get rid of) you should be able to go into the file:
https://www.red94.net/wp-content/themes/thematic/library/styles/default.css
and put the code:
widgettitle { display:none; }
I believe that will remove it for you.
Do you have a link to the page in action?
Forum: Fixing WordPress
In reply to: Edit Content Margins in 2011 Theme CloneLine 74 in style.css, change it to
#page { margin: 0px auto; max-width: 1000px; }
Forum: Fixing WordPress
In reply to: bold all the Nav items in the Menu of Twenty ElevenLooks to be bold in FF on my computer. Not sure if that helps at all…
Forum: Fixing WordPress
In reply to: add space between widgetsLook at the CSS style for the widget and adjust the margin-bottom to something larger.
Look at the .css and set the display to “none”. That should get rid of it.
I was wondering this same thing. Anyone ever got this figured out?
Forum: Themes and Templates
In reply to: Exclude Current Post from QueryYep, that did the trick! Thanks so much. I had actually tried “post__not_in”, but instead of passing $post->ID as a variable, I used it straight instead so it didn’t work. Appreciate the help!
It was quite a while ago, so I can’t remember. I think I abandoned this plugin and coded in some categories manually if I remember correctly. ??
Forum: Fixing WordPress
In reply to: wp_get_attachment_image_src Array Not WorkingUnfortunately it’s going in the meta data, so I need it without the img tag. That then puts the image at the top of my WordPress page. I’m just really curious why the array isn’t working actually. That’s the correct format for an array in .php right? Or is it array[160,90]?
Forum: Plugins
In reply to: Possible to override wp_die() ?I was looking for the same thing. Anyone figure out a way to customize wp_die() without having to alter wp_comments_post.php?