Forum Replies Created

Viewing 20 posts - 2,241 through 2,260 (of 4,903 total)
  • Author
    Posts
  • in reply to: Color change in the manubar #103400
    Mahesh
    Participant

    @noell-design: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .fullframe-nav-menu .menu-item a {
        color: #00ff00;
    }

    Note: Please use the color as desired.

    Regards,
    Mahesh

    in reply to: Text in the slider #103398
    Mahesh
    Participant

    @noell-design: Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #feature-slider .slides .entry-container {
        display: none;
    }

    Regards,
    Mahesh

    in reply to: Slider disappearing #103338
    Mahesh
    Participant

    @marco-cherin: Glad to know. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Slider disappearing #103331
    Mahesh
    Participant

    @marco-cherin: Please add the following CSS for flag in mobile menus:

    .sb-options li:nth-child(10) a {
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAIAAAD5gJpuAAAABGdBTUEAAK/INwWK6QAAABl0RVh0U29mdHdhcmUAQWRvYmUgSW1hZ2VSZWFkeXHJZTwAAAE2SURBVHjaYmSYyMDwgwEE/jEw/GF4mvT0HyqQUlX9B5aEIIAAYmH4wlDtWg1SDwT//0lKSv7/D+T9/w+nYmL+//79/88fIPll0yaAAGJhYAGJP/n69O+/v0CAUAcHt2////ULqJpRVhZoA0AAsQCtAZoMVP0HiP7+RlcNBEDVYA0Mv38DNQAEEMj8vwx//wCt/AdC/zEBkgagYoAAYgF6FGj277+///wlpAEoz8AAEEAgDX/BZv/69wuoB48GRrCTAAKICajh9//fv/6CVP/++wu7BrDxQFf/YWAACCCwk0BKf0MQdg1/gBqAPv0L9ANAALEAY+33vz+S3JIgb/z5C45CBkZGRgY4UFICKQUjoJMAAoiRoZSB4RMojkHx/YPhbNVZoM3AOISQQPUK9vaQOIYAgAADAC5Wd4RRwnKfAAAAAElFTkSuQmCC');
        background-repeat: no-repeat;
        background-position: 1%;
    }
    
    .sb-options li:nth-child(11) a{
        background-image: url('data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAALCAIAAAD5gJpuAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAflJREFUeNpinDRzn5qN3uFDt16+YWBg+Pv339+KGN0rbVP+//2rW5tf0Hfy/2+mr99+yKpyOl3Ydt8njEWIn8f9zj639NC7j78eP//8739GVUUhNUNuhl8//ysKeZrJ/v7z10Zb2PTQTIY1XZO2Xmfad+f7XgkXxuUrVB6cjPVXef78JyMjA8PFuwyX7gAZj97+T2e9o3d4BWNp84K1NzubTjAB3fH0+fv6N3qP/ir9bW6ozNQCijB8/8zw/TuQ7r4/ndvN5mZgkpPXiis3Pv34+ZPh5t23//79Rwehof/9/NDEgMrOXHvJcrllgpoRN8PFOwy/fzP8+gUlgZI/f/5xcPj/69e/37//AUX+/mXRkN555gsOG2xt/5hZQMwF4r9///75++f3nz8nr75gSms82jfvQnT6zqvXPjC8e/srJQHo9P9fvwNtAHmG4f8zZ6dDc3bIyM2LTNlsbtfM9OPHH3FhtqUz3eXX9H+cOy9ZMB2o6t/Pn0DHMPz/b+2wXGTvPlPGFxdcD+mZyjP8+8MUE6sa7a/xo6Pykn1s4zdzIZ6///8zMGpKM2pKAB0jqy4UE7/msKat6Jw5mafrsxNtWZ6/fjvNLW29qv25pQd///n+5+/fxDDVbcc//P/zx/36m5Ub9zL8+7t66yEROcHK7q5bldMBAgwADcRBCuVLfoEAAAAASUVORK5CYII=');
        background-repeat: no-repeat;
        background-position: 1%;
    }

    Regards,
    Mahesh

    in reply to: Tours widget #103330
    Mahesh
    Participant

    @posizionaresitiweb: Glad to know. Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: White borders #103318
    Mahesh
    Participant

    @panopano:
    1. Border colors around text area: Checked your site, cannot find any borders. Let me know further.
    2. How to use SVG logo:
    For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php, add the following code:

    function create_child_cc_mime_types($mimes) {
      $mimes['svg'] = 'image/svg+xml';
      return $mimes;
    }
    add_filter('upload_mimes', 'create_child_cc_mime_types');

    3: How to responsively scale logo (it’s too big on smartphones):
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    @media screen and (max-width: 480px) {
    	.site-logo .custom-logo {
    		max-width: 100px;
    	}
    }

    Regards,
    Mahesh

    in reply to: Space between sidebarleft an content colum right side #103303
    Mahesh
    Participant

    @jeyla: Please try disabling any plugins you have and check if it resolves the issue. If not please try re-installing a fresh copy of the theme any try again. I checked you site and now you’ve put the CSS its displaying fine.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Layout Option #103292
    Mahesh
    Participant

    @tonje-gravdehauggmail-com: The problem is because, you’ve increased the width of the primary content from 860px to 960px, and the sidebar’s width should have to be decreased accordingly. But in your case, with that width, the sidebar seems so small that the content of facebook widgets overflow.
    Let me know further.

    Regards,
    Mahesh

    in reply to: Tours widget #103291
    Mahesh
    Participant

    @posizionaresitiweb:
    Align third one to the left: Go to Dashboard=> Appearance-> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .tour-dates ul li:nth-child(3n) {
        text-align: left;
    }

    The feature I mentioned above is page template. You can create a page and select a page template so that only the widgets you want to display can be managed in those pages and then set them as you home page. The same has been done in Homepage. Hope you understand.

    You have already put the widget in before content. Please add the following CSS to display Tours widget in homepage only.

    body:not(.home) #ct-tours-4 {
    	display: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Tours widget #103273
    Mahesh
    Participant

    @posizionaresitiweb: Can you please clarify about columns not properly aligned.
    The demo is a Pro version and it has page template option that allows you to add up desired widgets to you site without content. I recommend you to upgrade to Pro.
    For displaying the widget after content, go to Dashboard=> Appearance=> Widgets and move the Tours widget to After Content widget area.
    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Slider disappearing #103271
    Mahesh
    Participant

    @marco-cherin: The code should work fine. I’ve checked it on our server. Do you have any other code in functions.php. Please try removing the code and check if it works.

    Regards,
    Mahesh

    in reply to: Slider disappearing #103262
    Mahesh
    Participant

    @marco-cherin: For this, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then in you child theme’s functions.php add the following codes:

    if ( ! function_exists( 'catcheverest_polylang_invalidcache' ) ) :
    /**
     * Template for Clearing Polylang Invalid Cache
     *
     */
    function catcheverest_polylang_invalidcache() {
    	delete_transient( 'catcheverest_post_sliders' );	
    } // catcheverest_polylang_invalidcache
    endif;
    add_action( 'after_setup_theme', 'catcheverest_polylang_invalidcache' );

    Regards,
    Mahesh

    in reply to: Space between sidebarleft an content colum right side #103261
    Mahesh
    Participant

    @jeyla: Have you modified anything in style.css? Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .content-right #main {
        float: right;
    }
    .content-right .sidebar-primary {
        float: left;
    }

    This should be by default.
    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: White borders #103233
    Mahesh
    Participant

    @panopano: Yes, you can use SVG logo. And let me know if you want help with Custom CSS.

    Regards,
    Mahesh

    in reply to: Page Title in Slider Image #103232
    Mahesh
    Participant

    @zxzouyx: Please post in your site url. And do you want to remove the content as well?

    Regards,
    Mahesh

    in reply to: Space between sidebarleft an content colum right side #103231
    Mahesh
    Participant

    @jeyla: Seems your site is currently unavailable. Let me know further.

    Regards,
    Mahesh

    in reply to: Slider disappearing #103230
    Mahesh
    Participant

    @marco-cherin: Sorry for the late reply. When I tried with the Program post, it worked everytime. Did it worked for you with that post? Please try reinstalling the theme. Let me know if the problem persist.

    Regards,
    Mahesh

    in reply to: Category Tag & Author Tag in blog posts #103229
    Mahesh
    Participant

    @gmg-jet: Glad to know you worked it out. Thank you for your appreciation. Let me know if you have any problem. Have a nice day!

    Regards,
    Mahesh

    in reply to: Upgrading from free #103162
    Mahesh
    Participant

    @dylan-f: Which version of Pro theme are you using? All settings are migrated automatically from Free to Pro from version 3.5 and above. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Mobile Navigation menu no longer working #103161
    Mahesh
    Participant

    @live2bfree: Glad you found the issue and resolved it. Have a nice day!

    Regards,
    Mahesh

Viewing 20 posts - 2,241 through 2,260 (of 4,903 total)