Tagged: x
-
AuthorPosts
-
March 20, 2017 at 7:56 am #1413555
Hi
I would like to add this text below the footer on my site
Disclaimer: This website is presented by Sandra Ishkanes for the sole purpose of disseminating health information for public benefit. The content, products and services offered herein are here to educate consumers on health care that may affect their daily lives. Nothing in the content, products or services should be considered, or used as a substitute for, medical advice, diagnosis or treatment. This site and its services do not constitute the practice of any medical, nursing or other professional health care advice, diagnosis or treatment. You should always talk to your health care provider for diagnosis and treatment, including your specific medical needs. None of the products or services offered through this website represents or warrants that any particular service or product is safe, appropriate, or effective for you.
I have added it to wp-footer.php as below but its not picking up the css code
<?php // ============================================================================= // VIEWS/RENEW/WP-FOOTER.PHP // ----------------------------------------------------------------------------- // Footer output for Renew. // ============================================================================= ?> <?php x_get_view( 'global', '_header', 'widget-areas' ); ?> <?php x_get_view( 'global', '_footer', 'scroll-top' ); ?> <?php x_get_view( 'global', '_footer', 'widget-areas' ); ?> <?php echo "<p class='footer-text'>Disclaimer: This website is presented by Sandra Ishkanes for the sole purpose of disseminating health information for public benefit. The content, products and services offered herein are here to educate consumers on health care that may affect their daily lives. Nothing in the content, products or services should be considered, or used as a substitute for, medical advice, diagnosis or treatment. This site and its services do not constitute the practice of any medical, nursing or other professional health care advice, diagnosis or treatment. You should always talk to your health care provider for diagnosis and treatment, including your specific medical needs. None of the products or services offered through this website represents or warrants that any particular service or product is safe, appropriate, or effective for you.</p>" ?> <?php if ( x_get_option( 'x_footer_bottom_display' ) == '1' ) : ?> <footer class="x-colophon bottom" role="contentinfo"> <div class="x-container max width"> <?php if ( x_get_option( 'x_footer_social_display' ) == '1' ) : ?> <?php x_social_global(); ?> <?php endif; ?> <?php if ( x_get_option( 'x_footer_menu_display' ) == '1' ) : ?> <?php x_get_view( 'global', '_nav', 'footer' ); ?> <?php endif; ?> <?php if ( x_get_option( 'x_footer_content_display' ) == '1' ) : ?> <div class="x-colophon-content"> <?php echo do_shortcode( x_get_option( 'x_footer_content' ) ); ?> </div> <?php endif; ?> </div> </footer> <?php endif; ?> <?php x_get_view( 'global', '_footer' ); ?>
Could you have a look? My site is here sandraishkanes.co.uk
Thanks
March 20, 2017 at 10:52 am #1413793Hi There,
Please provide us with your website URL so we can take a closer look.
Thanks.
March 20, 2017 at 1:19 pm #1414010My site is here:
March 20, 2017 at 2:47 pm #1414103Hi Sandra,
It seems to be following the CSS rule correctly:
.footer-text { font-size: 16px; line-height: 20px; font-weight: 300; }
What changes are you trying to make on the text that’s not working well?
March 21, 2017 at 5:31 am #1414752Hi
Yes my oversight, apologies.
Could you help me with my grid instead? Your team very kindly helped me to sort out the grid spacing of the grid on the bottom of most of the pages on my website, but I’ve managed to mess it up somehow and I just cant figure out all the margin percentages.
The grid is out of line on my iphone and ipad, I attavh screenshots.
Example page here, at the bottom of the page:
http://www.sandraishkanes.co.uk/clinic/the-3-point-plan/
Thanks
March 21, 2017 at 3:58 pm #1415473Hi
Should I start a new thread for this issue?
March 21, 2017 at 5:14 pm #1415541Hi There,
I remember that site. Did you remove from your custom CSS the code that I’ve provided here? Please add that on top of your custom CSS.
Then please check your entire custom CSS here: http://csslint.net/ and resolve all found the errors.
Thanks.
March 25, 2017 at 8:24 am #1420042Hi
Yes that’s resolved now, not sure what happened there, thanks for your support.
March 25, 2017 at 9:32 am #1420065You’re most welcome 🙂
-
AuthorPosts