rickykpg
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Ascent] Change color of image bordersFor the image border change the hex color code in the following:
.gallery .gallery-item img { border: 2px solid #1ABC9C !important;As for the background color for the text box, I’ll need a live link so I can see it in action as the demo page does not have it below any of its images.
Forum: Themes and Templates
In reply to: [Ascent] Change color of image bordersHello,
Can you provide an example so I can see it?
Forum: Themes and Templates
In reply to: [Ascent] Remove Post Thumbnail on Ascent ThemeCan you post a link to an example?
Forum: Plugins
In reply to: [Page scroll to id] Using With Accordion From Shortcodes Ultimate PluginThank you very much!
That did the trick and now it works perfectly.
Forum: Plugins
In reply to: [Page scroll to id] Using With Accordion From Shortcodes Ultimate PluginHello,
Thank you, script works great. There’s a slight issue I’ve noticed and that’s if you select an item below the one you’re currently on, it scrolls a bit too far down, selecting it again fixes it though. You’ve already gone above and beyond with helping me so if you’d like to take a look then awesome, if not then that’s OK as well. π
Again thank you for all the help you’ve provided.
Forum: Plugins
In reply to: [Page scroll to id] Using With Accordion From Shortcodes Ultimate PluginCode for reference
<script> (function($){ $(window).load(function(){ $(document).data("mPS2id").onComplete=function(){ //get the clicked link var elem=$(".mPS2id-clicked"), //get the id value of the clicked link (without the hash) val=elem.attr("href").split("#")[1]; //check if the id value exists as an accordion element and set/change the URL hash accordingly if($("#"+val).length && $("#"+val).parents(".accordion-toggle.collapsed").length){ //set the value as location hash in the address bar location.hash="#"+val; } } }); })(jQuery); </script>Forum: Plugins
In reply to: [Page scroll to id] Using With Accordion From Shortcodes Ultimate PluginThanks for the reply, ended up switching to Magee Shortcodes and that’s what I ended up doing. Wish the actual accordion had an ID so I could have it auto opened. Was hoping to use a script you provided me awhile back but no luck. Looks like I’ll have to wait until the plugin authors adds support for it.
Forum: Plugins
In reply to: [Magee Shortcodes] Anchor Links in TabsAlso switched from Shortcodes Ultimate wondering about this, seems it’s not currently possible.
Forum: Plugins
In reply to: [Sticky Menu & Sticky Header] Submenu not working in cloned menuJust wanted to say that version 2.0 fixed my issue with sub-menus so thank you!
Forum: Themes and Templates
In reply to: [Ascent] Separate posts page with non-static home pageNot possible with the default theme settings, you could try the plugin Page Builder by SiteOrigin but you’ll need to recreate the intro page.
Forum: Themes and Templates
In reply to: [Ascent] Different header images on pagesDoesn’t seem possible with the default settings. You’ll need to use a custom slider or take a look at Page Builder by SiteOrigin.
Forum: Themes and Templates
In reply to: [Ascent] Slider text problems in @mediaSo you want the text in the image to be higher up?
@media screen and (max-width: 767px) { #home-slider .content-wrapper { top: 30%; } }Change the 30% to whatever you want.
Forum: Themes and Templates
In reply to: [Ascent] Problems Rendering Header and FooterTry this, it should stop the page from jumping to the top when scrolling up.
#header-main { position: absolute; left: 0; right: 0; }Credit to Malihu for the fix.
https://wordpress.org/support/topic/offet-not-working-for-initial-scroll?replies=3Forum: Themes and Templates
In reply to: [Ascent] Making phone number in header clickableLook for the following
<?php echo of_get_option('phone_number'); ?>Replace it with the code provided by tenchu68.
Forum: Themes and Templates
In reply to: [Ascent] sidebar on leftFor pages you set the sidebar to be on the left, you’ll need to edit index.php, search.php and single.php to get the sidebar on the left.
In those pages look for the following, it’s usually towards the bottom.
<div class="col-sm-12 col-md-3"> <?php get_sidebar(); ?> </div>That’s the code for the sidebar, place it above the following.
<div class="col-sm-12 col-md-9">Your sidebar should be on the left side now.