Forum Replies Created

Viewing 20 posts - 10,341 through 10,360 (of 12,027 total)
  • Author
    Posts
  • in reply to: Picture size in Education Pro #153200
    Skandha
    Participant

    @josefsdorf: To change the square image settings in archive page and transition length in the course slider you will need to create a child theme and customize your site.
    Let me know if you are familiar with child theme customization otherwise I suggest you to hire a customizer to get it done.

    Kind Regards,
    Skandha

    in reply to: Catchbase Pro Adjust Header Logo In Mobile View #153166
    Skandha
    Participant

    @timbrewolf: I checked your site and the logo seems to be showing up well. Can you explain how would you like to change the position of the logo?

    Kind Regards,
    Skandha

    in reply to: Changing font size in Fotografie Pro #153164
    Skandha
    Participant

    @madamviolet: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .main-navigation a {
    	font-size:14px !important;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Changing font size in Fotografie Pro #153150
    Skandha
    Participant

    @madamviolet: Do you mean to change the background-color of the submenu? If yes,
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To change the background-color of sub-menu */
    .main-navigation ul ul {
           background-color:red !important;
    }
    /* To change the color of text in sub-menu */
    .main-navigation ul ul li a {
           color:#000;
    }

    Let me know if this is what you want!
    Kind Regards,
    Skandha

    in reply to: Featured image is shown twice on the page #153148
    Skandha
    Participant

    @suzannecarree: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .entry-thumbnail.from-metabox.helena-slider {
            display:none;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Thumbnails size on homepage and Archives #153147
    Skandha
    Participant

    @pedrosilva: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/clean-journal/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Change Titel an Menu to Small Letter #153146
    Skandha
    Participant

    @artpriskaleutenegger-ch: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site-title, .site-description, #primary-menu li a {
           text-transform:lowercase !important;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: WooCommerce ready? #153145
    Skandha
    Participant

    @timburkart: The pro theme has WooCommerce Layout Option for WooCommerce Pages in the Layout Option which is not available in the free theme. You can select Right Sidebar, Left Sidebar, No Sidebar and No Sidebar: Full Width layout for as WooCommerce Pages.

    The pro theme also has a WooCommerce Option inside the Theme Options which is not available in free version of the theme. The pro theme supports Shop and Cart Pages of WooCoomerce.
    This is why the pro theme is WooCommerce Ready.

    You can also check out the additional-features available in the pro version and make your decision to upgrade to pro.

    Let me know if this helps you out!
    Kind Regards.
    Skandha

    in reply to: Catch Base Pro Make Primary Sidebar Width Narrower #153142
    Skandha
    Participant

    @timbrewolf: Thank you very much for your appreciation. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Final Tiles Gallery doesn\'t show anymore since last upgrade #153140
    Skandha
    Participant

    @redosred: I tried using the plugin at my end and it seems to be working fine. Can you please try deactivating all other plugins and check if the Gallery shows up? This maybe a result of plugin conflict.

    Let me know if the issue persists!
    Kind Regards,
    Skandha

    in reply to: Adding the Instagram Feed plugin to show on the homepage #153137
    Skandha
    Participant

    @elliottrae: Go to => Plugins => Activate Catch Instagram Feed Gallery Widget Plugin
    Now Go to => Dashboard => Catch Instagram Feed Gallery Widget Tab => Get Access Token => Login to your Instagram Account

    Finally Go to => Appearance => Customize => Widgets => Before Content => Catch Instagram Feed Gallery Widget => and Choose from the options and Publish.

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: Header media url use #153134
    Skandha
    Participant

    @aline-jewell: Go to => Appearance => Customize => Header Media => Header Media URL => Insert the URL you want to be redirected to when you click on the button Continue Reading.

    Let me know if this solves the issue!
    Kind Regards,
    Skandha

    in reply to: Woocommerce product gallery #153110
    Skandha
    Participant

    @kwhooley: Maybe this will partially solve the issue.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .woocommerce-product-gallery__image:not(:first-child) {
         max-width:100px;
         max-height:100px;
    }

    You can alter the width and height according to your choice.
    Let me know if this helps you out!
    Kind Regards,
    Skandha

    in reply to: Change to Adventurous #153095
    Skandha
    Participant

    @ypi3cu: Can you explain what differences you are seeing from the preview? Also do you mean the theme demo by preview? Please activate Adventurous theme on your site so that I can look into the issue.

    Kind Regards,
    Skandha

    in reply to: Menu button only filed with other pages #153094
    Skandha
    Participant

    @moosewood: I don’t think it possible to make “Test1” display when “NFL” is clicked because as NFL is also a page it will redirect to that page when clicked. If you really need this I suggest you to hire a customizer.

    Kind Regards,
    Skandha

    in reply to: Get rid of archives #153085
    Skandha
    Participant

    @csc_geordie: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/rock-star/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Thumbnails size on homepage and Archives #153078
    Skandha
    Participant

    @pedrosilva: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    @media screen and (min-width:767px) {
    	.archive-post-wrap .featured-image a img {
    		width:250px;
    		height:250px;
    	}
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

    in reply to: changing the color of the navigation under post #153076
    Skandha
    Participant

    @kwhooley: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/parallax-frame/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    in reply to: Using a child theme #153075
    Skandha
    Participant

    @stefanomoret: Yes, it seems to be working well with the above code.

    Kind Regards,
    Skandha

    in reply to: Catch Base Pro Make Primary Sidebar Width Narrower #153074
    Skandha
    Participant

    @timbrewolf: The padding between the Secondary sidebar -> Content and the Content -> Primary Sidebar is the same. As the widgets in the secondary sidebar are not fully using the width it looks like there is a bigger gap between the Secondary sidebar -> Content.
    Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .sidebar-secondary {
          padding-left:40px;
    }

    Maybe this will make it look better.

    To decrease the gap between primary sidebar Custom Widget text and Menu

    #custom_html-24 {
    	margin-bottom:0;
    }

    Let me know if this works out!
    Kind Regards,
    Skandha

Viewing 20 posts - 10,341 through 10,360 (of 12,027 total)