The Painted Hive
Forum Replies Created
-
Forum: Everything else WordPress
In reply to: Multiple widgets within the one widget?Thanks.
Forum: Themes and Templates
In reply to: Center align items within horizontal menuFinally worked this out. Here’s a great tutorial:
https://www.visibilityinherit.com/code/center-nav.phpForum: Fixing WordPress
In reply to: Multiple archive displaysWorked it out.
Forum: Themes and Templates
In reply to: Change text color on hoverThanks.
Forum: Themes and Templates
In reply to: Help please….menu dropdown position???Ended up using some padding. It’s not perfect in IE though will do.
Forum: Everything else WordPress
In reply to: Blogger to WordPress redirection questionThanks. I don’t have too many posts so am considering doing individual redirects.
Forum: Fixing WordPress
In reply to: Basic front page sliderThanks. I ended up going with Meteor Slides. It’s great!
Thanks. I worked it out. I’m using a Genesis theme. I ended up using this:
add_action ('genesis_before_loop', "custom_meteor_slides"); function custom_meteor_slides() { if ( is_home() && !is_paged() ) { if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow("featured-posts", ""); } }
It seems to work great.
Thanks for the awesome plugin!
Forum: Themes and Templates
In reply to: Help please….menu dropdown position???Sorry, the site is only hosted locally for now. I know this makes things difficult.
Forum: Themes and Templates
In reply to: Remove formatting doesn't clear text alignmentThanks. Will do.
Forum: Themes and Templates
In reply to: Remove formatting doesn't clear text alignmentThanks. Though that won’t really solve my problem when I migrate over from Blogger as all my posts have been center aligned from within the visual editor. Is there a reason that removing formatting doesn’t touch alignment? It seems kinda strange.
Forum: Fixing WordPress
In reply to: Background Image in a postYou can add a background image within the post itself using in-line styles quite easily (no CSS required).
I’m no expert and maybe it’s not the correct way to do things (not sure how cross browser compatible it is) though I have achieved it using code like this (for example):<div style="background-image: url('url here'); background-repeat: no-repeat; height: 500px; width: 500px; margin-top: 0px;"> <p style="padding: 0px 0px 0px 10px;">Text here.</p></div>
Just adjust the height and width and padding as required.
Hope this helps.
Experts, feel free to shoot me down if I’m wrong ??Forum: Themes and Templates
In reply to: Center align items within horizontal menuSorry, my site is only hosted locally for now so I can’t provide a link. I will try some other forums elsewhere.
Forum: Everything else WordPress
In reply to: Multiple widgets within the one widget?Thanks. I’ll check out this plugin though I do already have a tab plugin installed which I’ve really liked so far. Anyone know of any alternate ways to combine widgets?
Forum: Everything else WordPress
In reply to: Migrating from BloggerOh crap. Thanks for the info.