Forum Replies Created

Viewing 20 posts - 4,241 through 4,260 (of 14,494 total)
  • Author
    Posts
  • in reply to: Restrict mobile menu to display top-level pages only #55286
    Sakin
    Keymaster

    @Kristin: Yes you are right

    in reply to: Featured Content image alignment #55284
    Sakin
    Keymaster

    @missfudd82: Sorry you are posting Simple Catch Theme question in Full Frame Pro theme support forum. For Simple Catch theme support forum, you can post it in http://catchthemes.com/support-forum/forum/simple-catch-public/. I just check in your site and see that some of the post in your slider doesn’t have large image. You featured image on those posts need to be at least 978px width to fit it. So, either upload the larger featured image or you can stretch the image by adding in the following css in “Appearance => Theme Options => Custom CSS” box:
    .featured img { width: 100%; }

    in reply to: Custom Menu Widget Colors in Header Right #55268
    Sakin
    Keymaster

    @David: Yes, I am using default color as you haven’t send me the color code. Also I have mentioned that you can change the color code.

    in reply to: Change Color of Footer #55267
    Sakin
    Keymaster

    @themintedmama: Please post in proper support forum as this might create confusion to other users. For full frame free you can post it in http://catchthemes.com/support-forum/forum/full-frame-free/.

    In Full Frame free theme, you can change the background color of footer in following css as per your need and add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #site-generator { background-color: #fff; }

    in reply to: Display menu button in responsive menu #55264
    Sakin
    Keymaster

    @emree025: Looks like you care viewing it from desktop that is why you are seeing two. In desktop browser it will display that arrow automatically. So, you can check from your mobile and you will not see two.

    in reply to: Custom Menu Widget Colors in Header Right #55262
    Sakin
    Keymaster

    @David:

    1. For Custom menu widget color in Header Right sidebar, you can change the color code in the following css and add it in “Appearance => Theme Options => Custom CSS” box:

    .sidebar-top .widget_nav_menu {
        background: none #333;
    }
    .sidebar-top .widget_nav_menu ul.menu li:hover > a,
    .sidebar-top .widget_nav_menu ul.menu a:focus {
    	background: none #e5e5e5; 
    	color: #373737;
    }
    .sidebar-top .widget_nav_menu ul.menu ul a {
    	background: none #f9f9f9;
    	border-bottom: 1px dotted #ccc;
    	color: #444;
    }
    .sidebar-top .widget_nav_menu ul.menu li:hover > a,
    .sidebar-top .widget_nav_menu ul.menu ul :hover > a,
    .sidebar-top .widget_nav_menu ul.menu a:focus {
    	background: none #efefef;
    }

    2. To remove the border right, you can simply add the following css in “Appearance => Theme Options => Custom CSS” box:

    .sidebar-top .widget_nav_menu ul.menu li {
        border-right: none;
    }

    Thanks for your appreciation 🙂

    in reply to: Menu not present on mobile #55260
    Sakin
    Keymaster

    @Tremblay: Thanks 🙂

    in reply to: Homepage Content #55249
    Sakin
    Keymaster

    @Mandala528: Which content are you talking about.
    1. If you are talking about latest post then by default it will show latest post in your homepage.
    2. If you want static page instead of latest post in your homepage then you can go to “Settings => Readings” and change your settings at Front page displays.
    3. If you are talking about “Featured Content”, then you can add that from “Appearance => Theme Options => Featured Content”

    So, I am but confused. Can you send me your site URl and let me know which content and where you want to add in.

    in reply to: Blog post links and inserted movies not always visible #55248
    Sakin
    Keymaster

    @tinevdb: No Problem. Thanks 🙂

    in reply to: Remove the page name #55247
    Sakin
    Keymaster

    @rickm813: You can hide the page name by adding in the following css in “Appearance => Customize => Theme Options => Custom CSS” box:

    .home #main .entry-header { display: none; }

    in reply to: transparency primary menu #55246
    Sakin
    Keymaster

    @Andrea: Thanks for your appreciation 🙂

    in reply to: Stop Text Wrapping On Page? #55244
    Sakin
    Keymaster

    @svoelker: You can add class in your paragraph our span.
    For example:
    <p class="clear">your paragraph text</p>

    in reply to: transparency primary menu #55243
    Sakin
    Keymaster

    Ok replace your current custom css:

    .nav-primary {
    background: #444;
    background: rgba(255,255,255,0.7);
    }
    .nav-primary .menu .sub-menu a,
    .nav-primary .menu .children a {
    background: #444;
    background: rgba(255,255,255,0.7);
    }

    With the following css:

    .nav-primary,
    .nav-primary ul.menu .sub-menu a {
    background: #fff;
    background: rgba(255,255,255,0.7);
    }
    in reply to: Amazon Affiliate Ad, Gridalicious Header #55242
    Sakin
    Keymaster

    @ottereli: Ok thanks

    in reply to: Home Page Margin #55241
    Sakin
    Keymaster

    @rickm813: Then add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
    .no-sidebar.content-width #main { width: 100%; }

    in reply to: Featured Content image alignment #55238
    Sakin
    Keymaster

    @Jesse:
    1. For featured content image center, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:
    #featured-content .featured-homepage-image { text-align: center; }

    The image on mobile, that is intentional and if you want to make it like desktop then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS” box:

    @media screen and (max-width: 990px) {	
        #featured-content.layout-four .hentry:nth-child(2n+1) {
            clear: none;
        }
        #featured-content.layout-four .hentry {
            float: left;
            width: 25%;
        }
    }
    in reply to: transparency primary menu #55208
    Sakin
    Keymaster

    @Andrea: Post in your site URl and then I will check in.

    in reply to: Widget Dropdown #55190
    Sakin
    Keymaster

    @Kim: This is from WordPress core and have no control from theme. So, you might need to search is this features is there is any plugins.

    in reply to: Post navigation: Older/Newer posts #55189
    Sakin
    Keymaster

    @5er: For translation you need to create .po and .mo files using free software from poedit.net. Once you are done let me know and I will email you the details. We can also add this translation in core theme. You can see other language which our user have contributed in your theme languages directory.

    For color, you can change the color code in the following css and then add it in “Appearance => Theme Options => Custom CSS” box:

    .paging-navigation a {
        color: #7c9b30;
    }
    .post-navigation a {
        color: #7c9b30;
    }
    in reply to: Mobile Menus not working for Catch Responsive Pro #55188
    Sakin
    Keymaster

    @David: It’s working in both. In my phone and also when you resize the window. Which browser are you using it. Can you fresh and check this screenshot http://awesomescreenshot.com/0504sg3r85

Viewing 20 posts - 4,241 through 4,260 (of 14,494 total)