cpattonsfs
Forum Replies Created
-
Forum: Plugins
In reply to: [FA Lite - WP responsive slider plugin] Image overlapping headlinesWould someone please take a look at this? Issue is still occuring. Here’s a screenshot:
https://imgur.com/a/2rik5
Thanks!Forum: Plugins
In reply to: [FA Lite - WP responsive slider plugin] Image overlapping headlinesI manually edited the stylesheet and added:
.fa_image { top: 20%; }
That seems to have fixed the vertical alignment issue, but when the page loads, the image is cut off horizontally until the page is resized. This behavior occurs in chrome (OS X and Windows 7, v45) and safari (OS 10.10.5).
Forum: Plugins
In reply to: [FA Lite - WP responsive slider plugin] Image overlaps headlineHI, we now have content in these articles. Can you take another look and see if you can point me in the right direction? Thanks.
Forum: Plugins
In reply to: [FA Lite - WP responsive slider plugin] Image overlaps headlineSorry, our website content person switched out the story. I’ll post again when we put a thumbnail up (if the problem is still happening). Thanks!
Relevant section of the tempalte below:
<?php /** Template name = NewsFeed */ remove_action( 'genesis_loop', 'genesis_do_loop' ); add_action( 'genesis_loop', 'sfs_do_resident_query' ); function sfs_do_resident_query() { global $paged; global $query_args; // Show Residents $args = array( 'posts_per_page' => '10', 'post_status' => 'publish', 'tag' => 'frontpage', 'paged' => $paged, ); ?> <div style="float: left; width: 375px; text-align: left;"> <?php genesis_custom_loop( wp_parse_args($query_args, $args) ); ?> </div> <div style="float: right; overflow-x: visible; margin-top: 0px; position: relative; margin: 0 -420px -121px 0; z-index: 90;"> <?php echo do_shortcode('[metaslider id=693]'); } ?> </div> <!-------Call rest of template-------> <?php genesis() ?>
Like I said, I’m not a CSS or PHP expert, so there may be a more elegant way to do this. All suggestions welcome.