- This topic has 12 replies, 2 voices, and was last updated 7 years, 5 months ago by
missawsina.
- AuthorPosts
- September 17, 2014 at 7:02 pm #54938
missawsina
MemberSince yesterday, i have a display problem of my list’s icons like the image below.
i think i was a cache problem, do know how can i fix it?
Thank’sSeptember 18, 2014 at 4:05 pm #54948missawsina
MemberHi, i know now why i have this problem, i use the pricing table ( free version) and there is a problem with the css ( class with the same name in the both). could you help me please? it’s very urgent thank you.
September 19, 2014 at 9:09 am #54955WordPress Eden
KeymasterPLease send a link where you are having the css problem.
September 19, 2014 at 9:25 am #54958missawsina
MemberHow can i send it en private please?
September 19, 2014 at 9:37 am #54960missawsina
MemberThis reply has been marked as private.September 19, 2014 at 10:43 am #54961missawsina
MemberThis reply has been marked as private.September 22, 2014 at 9:44 am #54982missawsina
MemberThis reply has been marked as private.September 23, 2014 at 7:04 am #54999WordPress Eden
KeymasterLooks like list issue is solved now. To solve conflict in p rewrite the css in theme’s style.css ( line 1088-1091 ) as following code,
entry-content, .entry-content p { font-size: 10pt !important; }
September 23, 2014 at 10:17 am #55003missawsina
MemberOk, so there is not a better way to do it.
I have an other problem.
I want to add a scroll bar button into the sidebar but when I add it as a widget it appears only on the blog page (archives page sidebar). I want that my scroll bar button appears on all my pages.can you tell on which page I have to add my code?
thank you for your help.September 24, 2014 at 5:15 pm #55025WordPress Eden
KeymasterYour code was no posted properly. Send a link where you are using it.
September 24, 2014 at 7:19 pm #55028missawsina
MemberSorry :
<a href="#" title="Back to top"> <img src="http://localhost/Acila-prod/wordpress/wp-content/uploads/rose2.png" /> </a>
thank’s
September 28, 2014 at 7:05 pm #55068WordPress Eden
KeymasterAdd following code after body tag in header.php to add Back to Top button.
<script> jQuery(function(){ jQuery(document).on( 'scroll', function(){ if (jQuery(window).scrollTop() > 100) { jQuery('.scroll-top-wrapper').addClass('show'); } else { jQuery('.scroll-top-wrapper').removeClass('show'); } }); }); jQuery(function(){ jQuery(document).on( 'scroll', function(){ if (jQuery(window).scrollTop() > 100) { jQuery('.scroll-top-wrapper').addClass('show'); } else { jQuery('.scroll-top-wrapper').removeClass('show'); } }); jQuery('.scroll-top-wrapper').on('click', scrollToTop); }); function scrollToTop() { verticalOffset = typeof(verticalOffset) != 'undefined' ? verticalOffset : 0; element = jQuery('body'); offset = element.offset(); offsetTop = offset.top; jQuery('html, body').animate({scrollTop: offsetTop}, 500, 'linear'); } </script> <style> .scroll-top-wrapper { position: fixed; opacity: 0; visibility: hidden; overflow: hidden; text-align: center; z-index: 99999999; background-color: #777777; color: #eeeeee; width: 50px; height: 48px; line-height: 48px; right: 30px; bottom: 30px; padding-top: 2px; border-top-left-radius: 2px; border-top-right-radius: 2px; border-bottom-right-radius: 2px; border-bottom-left-radius: 2px; -webkit-transition: all 0.5s ease-in-out; -moz-transition: all 0.5s ease-in-out; -ms-transition: all 0.5s ease-in-out; -o-transition: all 0.5s ease-in-out; transition: all 0.5s ease-in-out; } .scroll-top-wrapper:hover { background-color: #888888; } .scroll-top-wrapper.show { visibility:visible; cursor:pointer; opacity: 1.0; } .scroll-top-wrapper i.fa { line-height: inherit; } </style> <div class="scroll-top-wrapper "> <span class="scroll-top-inner"> <i class="icon-circle-arrow-up icon-2x"></i> </span> </div>
September 30, 2014 at 12:21 pm #55086missawsina
MemberOk thank you.
- AuthorPosts
- You must be logged in to reply to this topic.