Forum Replies Created

Viewing 20 posts - 11,101 through 11,120 (of 14,494 total)
  • Author
    Posts
  • in reply to: Problems after WordPress update (3.5.2) #12756
    Sakin
    Keymaster

    @burgdani: Please report in NextGen Gallery support forum. They should be able to come with update soon. See this support thread http://wordpress.org/support/topic/known-plugin-conflicts-with-nextgen-20/page/3

    in reply to: Image slider does not work anymore #12751
    Sakin
    Keymaster

    @Sarah Althaus: Ok I see it now. Have you customize the theme functions. As I don’t see the slider script running in your site. You should have this file http://rapunzel-will-raus.ch/wp-content/themes/simple-catch/js/simplecatch_slider.js?ver=1.0

    I will also contact you though email in case you cannot find it then I need to check in your server.

    in reply to: NextGen Gallery – theme compatibility #12749
    Sakin
    Keymaster

    @Sarah Althaus: Thanks for your conformation. It’s ok. 🙂

    in reply to: Read More Link #12745
    Sakin
    Keymaster

    @anaorsini: 1. I would like the “pages” on the front page to display “Read More” instead of “…” How do I go about doing this. I have changed the except length in case this affected it but no. I put the but didnt make a difference.
    — This is done through “Catchthemes: Featured Page” widget. So, there is no option to control that. You can build child theme and then build widget based on catchthemes_get_page_widget() functions. You can also search for page plugins at http://wordpress.org/plugins/

    2. The image on the fourth “page” shown on the front page (Worship Bulletins) appears larger than the other three. Can you tell me how to correct this?
    — I see that you have upload the 3 images with size above 340px width and 193px height. But 4th one is smaller. Try to upload the image of at least 340px width and 193px height

    in reply to: Image slider does not work anymore #12742
    Sakin
    Keymaster

    @akhuna: I just checked your site and you are not using our theme. So, I cannot support on that.

    in reply to: Main body different color than background #12741
    Sakin
    Keymaster

    @vI3Tz: For main content background color. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. Change the color code as per you need.
    #main { background-color: #fff; }

    I don’t understand what do you mean by removing white spaces on the left and right of menu.

    in reply to: Image slider does not work anymore #12734
    Sakin
    Keymaster

    @Sarah Althaus: Can you send me our site URL?

    in reply to: Image slider does not work anymore #12733
    Sakin
    Keymaster

    @aroma-bobman: I cannot check it without your site URL. So, send me your site URL. I will also contact your through email to check in details.

    in reply to: Can open my domain #12732
    Sakin
    Keymaster

    @Mary-Jane: Looks like you site to change the file functions.php. So, in this case you need to re-upload the fresh copy of theme from FTP.

    in reply to: Main body different color than background #12731
    Sakin
    Keymaster

    @vI3Tz: can you send me your site URL?

    in reply to: NextGen Gallery – theme compatibility #12730
    Sakin
    Keymaster

    @Sarah Althaus: That is wrong information. Our theme is fully checked and review by WordPress Theme Review Theme for quality issues. You can open the file header.php and there you will see the code wp_head(). It’s not missing. Any theme without wp_head() code will not be allowed to be listed in WordPress.org

    in reply to: child theme #12729
    Sakin
    Keymaster

    @ashrafashraf: If you have customize the site though child theme and theme options panel, then nothing will happen when you update your theme.

    in reply to: Site Title and Tagline #12728
    Sakin
    Keymaster

    @barneycat25: There is not option to change the font in Simple Catch Free Theme. You might considering upgrading to Simple Catch Pro where there is font options and more features. See details at http://catchthemes.com/theme-instructions/simple-catch-pro/

    If you want to use Web Safe fonts http://www.w3schools.com/cssref/css_websafe_fonts.asp . Then you can add the font css in “Appearance => Theme Options => Custom CSS” box.
    h1#site-title { font-family: Arial, Helvetica, sans-serif; }

    in reply to: social icons UPON the header featured image #12727
    Sakin
    Keymaster

    @businessbabes: Sorry but it’s really hard for me to support the site which I cannot see it. Please hire developer to fix the issue for you. If you want me to support you with the site then you need to upload the site to live or demo site where I can view what is your customization.

    in reply to: Problem with pictures #12722
    Sakin
    Keymaster

    @ashrafashraf: All the things that you do with the Theme Options panel will remain as it is even after your updates. So, don’t worry about that.

    in reply to: how do i change page width #12705
    Sakin
    Keymaster

    @kapo_e: It’s 960 only for screen resolution 1190px and above. So, you can reduce that to 500px by adding the following CSS in “Appearance => Theme Options => Custom CSS” box.
    @media screen and (min-width: 1190px) { #primary { width: 500px; } }

    in reply to: Problem with pictures #12704
    Sakin
    Keymaster

    @ashrafashraf: Maybe the another computer resolution is below 1060px. In those computer your site width will be 900px.

    If you want to make the menu in single like with those computer, then you can add the following css in “Appearance => Theme Options => Custom CSS” box.
    @media screen and (max-width: 1060px) { #branding ul.menu a { padding: 0 0.8em; } }

    in reply to: Problems with Home Page #12703
    Sakin
    Keymaster

    @pohl: To reduce the gap between the header and the first line, you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .entry-content { padding-top: 0; }

    in reply to: Change size text #12691
    Sakin
    Keymaster

    @impresnet:
    /* For Default Font Size for content and all */
    body, button, input, select, textarea { font-size: 16px; }

    /* For all Content font size */
    .hentry p { font-size: 16px; }

    For font to “Tahoma” just go to “Appearance => Theme Options => Font Family Options” and change it.

    in reply to: social icons UPON the header featured image #12690
    Sakin
    Keymaster

    @businessbabes: Hello Kat, please be careful while you change the css as you need to look for responsive css as well.

    The CSS for active main menu item is as below:

    #header-menu ul.menu li:hover > a,
    #header-menu ul.menu a:focus,
    #header-menu .menu .current-menu-item > a,
    #header-menu .menu .current-menu-ancestor > a,
    #header-menu .menu .current_page_item > a,
    #header-menu .menu .current_page_ancestor > a {
    	background-color: #000;
    }

    But for the width between the main content column and the right sidebar. This is bit complicated. As this depends on the width of Primary content area and Secondary Sidebar area and you need to adjust at for each responsive width

    #primary { width: 570px; }
    #secondary { width: 300px; }
Viewing 20 posts - 11,101 through 11,120 (of 14,494 total)