sandra408
Forum Replies Created
-
Forum: Plugins
In reply to: Elastislide – A Responsive jQuery Carousel Plugin Installation help.if you check the preview (see the bottom of the page) you’ll see that is is a slider (2 options: HTML content or thumbnails). And it gives you an option to adjust number of the visible items, so you can set it to 3 or whatever…
Forum: Plugins
In reply to: Elastislide – A Responsive jQuery Carousel Plugin Installation help.Try this Carousel WordPress plugin instead.
It actually allows you to easily configure your slider from your admin. panel.Forum: Plugins
In reply to: NextGen Gallery – "You do not have sufficient permissions" message.plugin re-installation solved this.
Forum: Themes and Templates
In reply to: how to make text-shadow display in Internet Explorer.Thank you for the very informative answer. You helped me a lot.
Sorry, here is the code:
#access .menu-header ul li, div.menu ul li { color: #fff; text-shadow: 0px -1px 1px #DE170A; } #access .menu-header ul ul li, div.menu ul ul li { text-shadow: none; }
Sorry, it was right there:
#access ul li.current_page_item > a, #access ul li.current-menu-ancestor > a, #access ul li.current-menu-item > a, #access ul li.current-menu-parent > a { color: #fff; text-shadow: 0px -1px 1px #DE170A; }
Forum: Themes and Templates
In reply to: Primary sidebar widgets are not visible in IPhone viewingMy theme was created based in the TwentyTen.
Resolved the problem by putting my Recent Posts, Categories, Archives into the secondary widget area and keeping the rest of them in the primary widget area.Thank you for the quick response and support.
just had to set letter sizing in css file:
#access {
-webkit-text-size-adjust: 90%;
}Forum: Themes and Templates
In reply to: Adding an iframe code to the header.phpOK, thanks everyone.
Forum: Themes and Templates
In reply to: Extend color of the bg of the footer to the bottom of the page.Interesting idea, I’ll give it a try.
Forum: Themes and Templates
In reply to: Extend color of the bg of the footer to the bottom of the page.In the example (link) the footer is pushed to the bottom of the screen, I would like to figure out how to extend it’s color to the bottom of the browser window thought.
Forum: Themes and Templates
In reply to: Extend color of the bg of the footer to the bottom of the page.height: 100% for your body main or the footer does not do anything…
Forum: Themes and Templates
In reply to: Extend color of the bg of the footer to the bottom of the page.Sorry, the site is still in under construction/maintenance mode.
Forum: Themes and Templates
In reply to: Extend color of the bg of the footer to the bottom of the page.well, all the pages are different height… and then there would be unnecessary vertical scrolling…
Forum: Themes and Templates
In reply to: Footer background color is not showing in TwentyTen.Here is what worked finally for the branding image in the home page header only:
<?php if( is_home () || is_front_page() ) :?> <?php // Compatibility with versions of WordPress prior to 3.4. if ( function_exists( 'get_custom_header' ) ) { // We need to figure out what the minimum width should be for our featured image. // This result would be the suggested width if the theme were to implement flexible widths. $header_image_width = get_theme_support( 'custom-header', 'width' ); } else { $header_image_width = HEADER_IMAGE_WIDTH; } // Check if this is a post or page, if it has a thumbnail, and if it's a big one if ( is_singular() && current_theme_supports( 'post-thumbnails' ) && has_post_thumbnail( $post->ID ) && ( /* $src, $width, $height */ $image = wp_get_attachment_image_src( get_post_thumbnail_id( $post->ID ), 'post-thumbnail' ) ) && $image[1] >= $header_image_width ) : // Houston, we have a new header image! echo get_the_post_thumbnail( $post->ID ); elseif ( get_header_image() ) : // Compatibility with versions of WordPress prior to 3.4. if ( function_exists( 'get_custom_header' ) ) { $header_image_width = get_custom_header()->width; $header_image_height = get_custom_header()->height; } else { $header_image_width = HEADER_IMAGE_WIDTH; $header_image_height = HEADER_IMAGE_HEIGHT; } ?> <img src="<?php header_image(); ?>" width="<?php echo $header_image_width; ?>" height="<?php echo $header_image_height; ?>" alt="" /> <?php endif; ?> <?php endif;?>
I also remover hard-coded footer text and put it into a footer widget. Now the footer bg color shows…
Thanks everyone for the help.
S.