Forum Replies Created

Viewing 20 posts - 5,521 through 5,540 (of 14,509 total)
  • Author
    Posts
  • in reply to: Empty link text #49174
    Sakin
    Keymaster

    @vidyaekta: I have already given you tutorial on Menus to add Title in your like in menu http://en.support.wordpress.com/menus/#adding-custom-links.

    About alt tag in image. We have alt tag in image which is generated from theme. But if you have added image in your posts/pages then you need to manage this yourself. See this http://en.support.wordpress.com/images/uploading-images/ and http://en.support.wordpress.com/images/image-settings/

    in reply to: Empty link text #49151
    Sakin
    Keymaster

    @vidyaekta: I though you are talking about internal link. I still don’t know what are you talking about. Sorry for that.
    Maybe you are talking about Title tag in your menu. Then you can add that in your menu from “Appearance => Menus”. See this http://en.support.wordpress.com/menus/#adding-custom-links

    in reply to: Empty link text #49148
    Sakin
    Keymaster

    @vidyaekta: Maybe it’s talking about the breadcrumb. You can add Breadcrumb pugin such as wordpress.org/plugins/breadcrumb-navxt .

    Sorry I don’t understand. Please ask this to the support of the site from where you find this issue.

    in reply to: Background Header Image and Centering Title/Subtitle #49147
    Sakin
    Keymaster

    @thekathrynjoy: We only support theme developed by Catch Themes. You can add background in any theme but the css will be different.

    in reply to: Empty link text #49145
    Sakin
    Keymaster

    @vidyaekta: I still don’t get it what you mean. You site name will be in “Settings => Reading”

    in reply to: Simple Catch – Numeric Pagination #49141
    Sakin
    Keymaster

    @GiovannaChine: Thanks 🙂

    in reply to: Empty link text #49140
    Sakin
    Keymaster

    @vidyaekta: We don’t have control on your links. Sorry, you need to check yourself.

    in reply to: Header #49138
    Sakin
    Keymaster

    @Campagne:

    1. Not sure what are you trying to do it. If you don’t like to totally removing the padding then you can add the following css in “Appearance => Theme Options => Custom CSS” box. You can change the padding-top and padding-bottom as per you need

    #site-logo, #hgroup { padding-top: 20px; }
    #hgroup-wrap { padding-bottom: 15px; }

    2. You can add another image in the header right sidebar. For that, go to “Appearance => Widgets”.

    in reply to: Help to center the social widget in footer area one #49132
    Sakin
    Keymaster

    @Jacopo: Thank’s and Merry Christmas 🙂

    in reply to: Help to center the social widget in footer area one #49125
    Sakin
    Keymaster

    @Jacopo: Sorry I forgot. It should be float: none; There is no attribute like float: center.

    in reply to: Help to center the social widget in footer area one #49108
    Sakin
    Keymaster

    @Jacopo: Can you try adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    ul.social-profile li {
        display: inline-block;
        float: none;
    }
    in reply to: Space above header image #49105
    Sakin
    Keymaster

    @aroma-bobman: Ok now you can add the following css in “Appearance => Theme Options => Custom CSS” box:

    #site-logo { padding-top: 0; }
    #hgroup-wrap { padding: 0; }
    in reply to: Featured image in sidebar on page #49101
    Sakin
    Keymaster

    @Bas: Sorry there is no option to do that. You might need to consider hiring customizer to work for you on this. The only option about “4. Catch Kathmandu: Featured Page”, you can hide the text with the help of Custom CSS. For this, you need to add the following css in “Appearance => Theme Options => Custom CSS” box:

    .widget_catchkathmandu_page_widget .widget-title,
    .widget_catchkathmandu_page_widget .entry-summary { display: none; }
    in reply to: Code for header and widget titles stoped working #49099
    Sakin
    Keymaster

    Hi Helena,

    The CSS that you have added is fine. It is working fine in my computer as I have that cont Monotype Corsiva installed. So, this will work only in the computer with that font install as Monotype Corsiva is not a web safe font. You might need to consider embedding font or use google font. Also there is various font options in “Appearance => Theme Options => Font Family Options”

    Regards,
    Sakin

    in reply to: Space above header image #49097
    Sakin
    Keymaster

    @aroma-bobman: If you have logo then I recommend you to upload your logo from “Appearance => Header”. Not as the Header Featured Image. Once you go that buzz me and then I will send you custom css to remove extra spaces.

    Sorry I don’t understand your other question about cap between different menu.

    in reply to: Top fixed menu bar questions #49095
    Sakin
    Keymaster

    @Michael: For transparency, you need to add that color code in rgba as well. So, replace the following css:

    /* Background */
    #fixed-header-top {
        background-color: #000;
    }

    With the following, where you need to change both colors:

    /* Background */
    #fixed-header-top {
    	background: #000;
    	background: rgba(0, 0, 0, 0.7);
    }
    in reply to: Social Widget in Header not mobile friendly #49069
    Sakin
    Keymaster

    @Kim: It’s because you have added that Social Icons Widgets in Header Top Sidebar and also added custom css to position it as absolute 30px. See the following custom css that you have added

    #sidebar-header-top {
        position: absolute;
        top: 30px;
    }

    So, the best option it to move your social icon from “Header Top Sidebar” to “Header Right Sidebar”

    Or you have change that position in mobile by adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (max-width: 768px) {
        #sidebar-header-top {
            position: relative;
            top: 5px;
        }
    }
    in reply to: Simple Catch – Numeric Pagination #49068
    Sakin
    Keymaster

    @GiovannaChine: Yes translation to Brazilian Portuguese will be good. You can send this through http://catchthemes.com/contact-us/. Then you also get free upgrade to Simple Catch Pro theme. Sorry, you need to install plugin https://wordpress.org/plugins/wp-pagenavi/ to add numeric pagination.

    in reply to: top menu transparence #49067
    Sakin
    Keymaster

    @Kim: Ok I got your screenshot and it looks complicated. I have replied you in email. I need to check your site in details.

    in reply to: Featured Image slider pictures size #49066
    Sakin
    Keymaster

    @lucabriganti85: Yes, I check in different screensizes and it’s only the issue with large screens which is not comment in Web browsing. So, this should be fine. If you try to increase the image size more then 1600px to support very large screen, then you will have loading issue. As I have already told you the web browser user of this screen size is less then 2%. So, you need to think about it.

    Also there is one css trick that you can stretch this image for large screen by adding in the following css in “Appearance => Theme Options => Custom CSS” box:

    #main-slider img {
        width: 100%;
    }
Viewing 20 posts - 5,521 through 5,540 (of 14,509 total)