Forum Replies Created

Viewing 10 posts - 5,311 through 5,320 (of 6,341 total)
  • Author
    Posts
  • in reply to: How can I add an “Image Spacer”? #2744
    You must have valid license to access this content.
    in reply to: Floating button on top of page #2743
    You must have valid license to access this content.
    in reply to: Adding Fixed Text to Header #2741
    You must have valid license to access this content.
    in reply to: Background on seperate page #2738
    You must have valid license to access this content.
    in reply to: Title cuts off in Responsive View #2722
    You must have valid license to access this content.
    in reply to: General considerations… #2720
    You must have valid license to access this content.
    in reply to: Mobile Menu cutting off #2718

    For the menu issue, please try to add the following CSS into “OldCar options > Custom codes > CSS code”

    #menu-nice-1{
      overflow-y:scroll;
    }
    

    For another issues

    1. Put the following javascript code into “OldCar options > Custom code > javascript code”, after you do that, check again and let me know the result.

    jQuery(document).ready(function($){
     function resetMain(){
       var sidebarWidth=$('#sidebar').width();
       var mainWidth=$(window).width()-sidebarWidth-60;
       if($(window).width()> 1023){
          $('#main').css('width',mainWidth+'px');
       }else{
          $('#main').css('width','auto');
       }
     }
         resetMain();
         $(window).resize(function(){
            resetMain();
         });
    });

    2. If I understand you correctlly, the picture will be auto cropped by wordpress, if you check theme-init.php file in “includes” folder, you will find the following code?:

    /*Add diffierent size for post thumbnails*/
    add_theme_support('post-thumbnails');
    if ( function_exists( 'add_image_size')){  
    	add_image_size('image_slider', 940, 624,true);
    	add_image_size('image_carousel', 130, 130,true);
    	add_image_size('fluid_thumbnail', 580, 580,true);
    }

    It means different size of thumbnails, For the big gallery slider size, 940X624 is the best

    in reply to: Customizing Buttons #2717
    You must have valid license to access this content.
    in reply to: Max numbers of images in each portfolio #2716
    You must have valid license to access this content.
    in reply to: Blog posts show on homepage #2711
    You must have valid license to access this content.
Viewing 10 posts - 5,311 through 5,320 (of 6,341 total)