Forum Replies Created

Viewing 20 posts - 7,101 through 7,120 (of 14,505 total)
  • Author
    Posts
  • in reply to: Logo Top and Bottom Spacing #36690
    Sakin
    Keymaster

    @Michael: Still not working. It is showing “503 – Service unavailable”. Check you site.

    in reply to: Sticky post doesn't work #36688
    Sakin
    Keymaster

    @Djapeto: The only way you can achieve this in category will be to add in plugin. Search for plugin at http://wordpress.org/plugins/.

    in reply to: REMOVE THE padding #36686
    Sakin
    Keymaster

    @ashrafashraf: I have already given you detail CSS where you can just adjust the padding as per your need. For iPhone, in the previous css you can just change the padding. Find the following previous css that I gave you and then increase as much as you need.

    @media screen and (max-width: 767px) {
    #site-generator { padding-top: 134px; }
    }
    in reply to: Font Family Options not saved #36685
    Sakin
    Keymaster

    @jeffery.scherer: You can add the following css in “Appearance => Theme Options => Custom CSS” nox.

    If you want to change the font size in Scherer Law PLLC is a boutique special education law and also the font below the pictures then you can simply add the following css which will work for both.
    #featured-post .entry-title { font-size: 16px; }

    But if you just want to change only in Scherer Law PLLC is a boutique special education law text then you can add the following css.
    #featured-post #feature-heading { font-size: 16px; }

    in reply to: Logo Top and Bottom Spacing #36684
    Sakin
    Keymaster

    @Michael: You site is not opening. Can you check you site URL and confirm.

    in reply to: Adventurous Pro theme is translation ready. #36619
    Sakin
    Keymaster

    Hi Alain,

    Thanks for your appreciation. Adventurous Pro theme in translation ready and has been currently translated in Brazilian Portuguese and Hungarian languages.

    If you want to make your site Multi-language then you need to install plugin like WPML or qTranslate. This helps to display your site in Multiple Languages.

    But if you are just trying to install WordPress site in different language. Then you need to install WordPress in your language. Then you need to go to “adventurous-pro’ theme directly and then ‘languages’ folder. There you will see adventurous.pot file and then you can generate your language .mo and .po files using poedit.net software. Then you can send us the language file and we can add it in core theme files so that you don’t loose your language when you update the theme.

    Regards,
    Sakin

    in reply to: Adventurous Pro Issues #36618
    Sakin
    Keymaster

    Hi Benni,

    Thanks and right on time report. We have just fixed this in our new version 1.1 and will be release today.

    Thanks for your contribution.

    Regards,
    Sakin

    in reply to: Widget adjustment #36600
    Sakin
    Keymaster

    Hello Maeve,

    I check in your site and see the “Classes Widgets” looks fine. Or are you talking about “Upcoming classes & workshops” widgets. This how did you added it. Looks like from plugin. Can you check that plugin css? Also I don’t get it what are you trying to do here.

    What do you want to do with your Recent Entries blog blog. You can style with the following css.
    #secondary #recent-posts-3.widget { }

    You can add the border in the contact text widget with the following css.
    #secondary #text-5.widget { border: 1px solid #d61080; }

    Regards,
    Sakin

    in reply to: Stop Header masthead floating over mainpage div #36575
    Sakin
    Keymaster

    Hi Laurie,

    Do you mean that you have to remove the fixed header and make it normal header. I am bit confused with your question. If that is the case then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    #masthead.fixed-header { position: relative; }

    Regards,
    Sakin

    in reply to: REMOVE THE padding #36495
    Sakin
    Keymaster

    @ashrafashraf: Did you refresh your browser and check in as now when I check in your site. I see Powered by on right and Copyright on left. So, it’s corrected.

    in reply to: Header #36494
    Sakin
    Keymaster

    @acetumang: You can either make it transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background-color: transparent;
    }

    Or instead you can use RGBA color code and make it 79% transparent by adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background: rgba(255, 255, 255, 0.7);
    }
    in reply to: REMOVE THE padding #36491
    Sakin
    Keymaster

    @ashrafashraf: You have added all those inside 767px screen. So, replace your Custom CSS

    @media screen and (max-width: 767px) {
            .social-profile {display: none;}
    	#site-generator .copyright, #site-generator .powered {
    		display: inline;
    		width: 47%;
    	}
    #site-generator .powered { float: right; }
    #site-generator .copyright { float: left; }	
    #site-generator .copyright {
    		float: left !important;;
    		margin-right: 3%;
    		margin-left: 0;
    		text-align: left;
    	}
    #site-generator .powered {
    		float: right !important;
    		margin-left: 3%;
    		margin-right: 0;
    		text-align: right;
    	}
    }

    With the following css:

    @media screen and (max-width: 767px) {
        .social-profile {display: none;}
    	#site-generator .copyright, #site-generator .powered {
    		display: inline;
    		width: 47%;
    	}
    	#site-generator .copyright {
    		float: left;
    		margin-right: 3%;
    		margin-left: 0;
    		text-align: left;
    	}
    	#site-generator .powered {
    		float: right;
    		margin-left: 3%;
    		margin-right: 0;
    		text-align: right;
    	}
    }
    
    #site-generator .powered { float: right; text-align: right; }
    #site-generator .copyright { float: left; text-align: left; }
    Sakin
    Keymaster

    @prajakta: if you want to remove action and add your own then it will like below:

    // Removing the Default Action Hook
    function unhook_catchkathmandu_functions() {
    	remove_action( 'admin_menu', 'catchkathmandu_options_menu' );
    }
    add_action( 'init', 'unhook_catchkathmandu_functions' );
    
    add_action( 'admin_menu', 'catchkathmandu_child_options_menu' );
    
    function catchkathmandu_options_menu() {
    
    	add_theme_page( 
            __( 'Theme Options', 'catchkathmandu' ),		// Name of page
            __( 'Theme Options', 'catchkathmandu' ),		// Label in menu
            'edit_theme_options',                           // Capability required
            'theme_options',                                // Menu slug, used to uniquely identify the page
            'catchkathmandu_child_theme_options_do_page'	// Function that renders the options page
        );	
    
    }
    
    function catchkathmandu_child_theme_options_do_page() {
    	
    }
    in reply to: REMOVE THE padding #36460
    Sakin
    Keymaster

    @ashrafashraf: That’s from rtl.css. So, you can add the following css to put it back.

    #site-generator .powered { float: right; }
    #site-generator .copyright { float: left; }
    in reply to: header #36459
    Sakin
    Keymaster

    @ashrafashraf: Adding Custom Header image and removing title is pretty easy. You can just go to “Appearance => Header” and then upload the image, see this screenshot http://www.pinterest.com/pin/548594798331307420/ and then to remove the title, you can uncheck “Show header text with your image.” in header text and then save changes.

    in reply to: repsonsive but no menu and footer on ipad #36457
    Sakin
    Keymaster

    @helen68: I see that you have heavily customize the Catch Evolution Free theme. I see that you have added whole style.css in “Appearance => Theme Options => Custom CSS” box. This gives issues. You are not supposed to add all. Please remove that and it will be fine. You are supposed to add only css changes that you need.

    in reply to: Responsive menu #36456
    Sakin
    Keymaster

    @Ida: So, when do you want to show the Mobile Menu instead of Full Menu. The CSS that controls mobile menus is as below. So, in the following css you can change the max-width depending on the screen-size and add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Max Screen Size 767px */
    @media screen and (max-width: 767px) {
    	#masthead .menu,
    	#footer-menu {
    		display: none;
    	}
    	.sb-holder {
    		display: block;
    	}
    }
    in reply to: Problem scrolling diaporama #36455
    Sakin
    Keymaster

    Hello Agnès,

    I just check in your site and see that there is conflict with slider js and “WP Widget Gallery” plugin JS. So, you need to deactivate that plugin and it will work fine.

    Regards,
    Sakin

    in reply to: Adventurous Pro Issues #36454
    Sakin
    Keymaster

    Hello Benni,

    We are trying to release version 1.1 tomorrow.

    Regards,
    Sakin

    in reply to: Adventurous Pro Issues #36434
    Sakin
    Keymaster

    @Ruby: Thank for reporting issue in Featured Content Healing issue. We have just got that info also from @Jessica and we are working on Fixed in both Adventurous Free and Pro version. We will fixed this as soon as possible. Please wait for version 1.1

    There is no option to change the color of slider controllers colors. For this you need to add Custom CSS. So, change the color code in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    /* For Default */
    #controllers a { background-color: #fff; }
    /* For Hover and Active */
    #controllers a:hover, #controllers a.active { background-color: #7c9b30; }
Viewing 20 posts - 7,101 through 7,120 (of 14,505 total)