Forum Replies Created

Viewing 20 posts - 8,361 through 8,380 (of 14,497 total)
  • Author
    Posts
  • in reply to: Hello, Sakin. I Need Some Help… #22102
    Sakin
    Keymaster

    @Dottie: I see that you have changed our default slider to meta slider that is why there was gap issues. You can add the padding bottom by adding in the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .metaslider { padding-bottom: 30px; }

    To change the color of the background behind my logo, you can go to “Appearance => Theme Options => Color Option” and pick the color to desire color or just add in color code in “Header Background Color”

    I don’t recommend font size in responsive design site as it will effect in the mobile devices as well. So, to change the font size either you change it for all devices or write specific css only for large screens.
    /* For Sidebar Widget Content */
    #secondary .widget, .widget a { color: #000; }
    /* For Sidebar Widget Title */
    #secondary .widget .widget-title, #secondary .widget .widget-title a { color: #000; }

    in reply to: Posts Page (Static Front Page) – clarification #22099
    Sakin
    Keymaster

    @sbartsch: Yes this is bit confusing feature in WordPress. It also took me sometime before to get full knowledge about this.

    1. By default WordPress display Latest Posts in your Frontpage.
    2. But sometime, people don’t want latest post to display in Frontpage which give blog looks and want to make it like company/personal site where they have static page in Frontpage. In this case, they have to go to “Readings => Settings => Front page displays” and click on “A static page (select below)” and choose page from “Front page”.
    3. But sometime, people should like to show their latest posts(Blog) in another place as they have added static page in the Front page. In this case they choose the page in “Posts page” to show their blog.

    Read this for more details http://codex.wordpress.org/Settings_Reading_Screen

    in reply to: Left Align Header Menu #22098
    Sakin
    Keymaster

    @drshento: This is Catch Evolution Pro forum and for Catch Everest, you need post in Catch Everest forum at http://catchthemes.com/support-forum/forum/catch-everest-public/

    Catch Everest Pro is advance version of Catch Everest Free and the additional features has been highlighted in http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Move Menu Position #22097
    Sakin
    Keymaster

    @Dottie: I see that you have already change the menu to start from the right.

    I don’t see widget menu on the side in your sidebar. Yes, you can change the color but for the font it’s bit tricky. Let me know which one in your sidebar and the name of the font and color code.

    in reply to: Tables & Borders #22095
    Sakin
    Keymaster

    @rckstr: Please post in the URL where you want to remove the border in the table.

    Sakin
    Keymaster

    @rsolosky: Yes some settings in that computer browser is making that happen. I check is from about 5 computers and it’s working great.

    Yes for additional features in Catch Everest Pro theme see this http://catchthemes.com/theme-instructions/catch-everest-pro/ and you can see the full width demo at http://catchthemes.com/demo/catch-everest/sidebar-layout/no-sidebar-full-width/

    Sakin
    Keymaster

    @Bouncedancer: Then you need to reduce the size of your wrapper and site. So that you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 1061px) {	
    	.wrapper {
    		width: 900px;
    	}
    	#primary {
    		width: 530px;
    	}
    	#secondary {
    		width: 340px;
    	}	
    }
    in reply to: Left Align Header Menu #22044
    Sakin
    Keymaster

    @Melanie: Ok the complete css will be as below:

    #fixed-header-top { background-color: #fff; }
    #fixed-header-top ul li { float: left; }
    #fixed-header-top ul.menu > li a { color: #080079; }
    #fixed-header-top ul.menu li:hover > a,
    #fixed-header-top ul.menu ul :hover > a,
    #fixed-header-top ul.menu a:focus {
    	color: #080079;
    }
    #fixed-header-top ul.menu ul {
    	background-color: #fff;
    }
    #fixed-header-top ul.menu ul li a {
    	color: #680710;
    }
    #fixed-header-top ul.menu ul li a:hover {
    	background-color: #fff;
    }
    in reply to: Header and subhead #22042
    Sakin
    Keymaster

    @jagbabs: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    Looks like you have added following CSS in style.css. Remove that.

    #site-title a {
        line-height: 145px;
    }

    Also don’t edit core theme file such as style.css, functions.php, index.php and so on. To add custom CSS, you can either add it in “Appearance => Theme Options => Custom CSS” box or build child theme and add it in child theme style.css file.

    in reply to: Catch Everist Home Page Left Sidebar not aligning properly #22039
    Sakin
    Keymaster

    @rsolosky: It’s strange but I check our site in both Mac and PC Firefox browser and both showing fine not like the screenshot you have attached.

    Can you check out demo page, how it looks like in your Firefox.

    Sakin
    Keymaster

    @Bouncedancer: The suggested size is 1600px.Also you can see in your demo page http://catchthemes.com/demo/catch-evolution/ we have added 1600px width header image.

    in reply to: Text Menu Bar #22037
    Sakin
    Keymaster

    @Dottie: Content font family mean the actual content of post and page.
    Here goes the css for drop down menu font size

    #access ul li ul li a {
        font-size: 13px;
        font-weight: normal;
        line-height: 18px;
    }
    in reply to: Center the Primary Menu #22030
    Sakin
    Keymaster

    @Melanie: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #header-menu ul.menu {
        text-align: center;
    }
    #header-menu ul.menu li {
        display: inline-block;
        float: none;
    }
    #header-menu ul.menu ul {
        text-align: left;
    }
    in reply to: No featured thumbnail issue on Facebook share of homepage #22028
    Sakin
    Keymaster

    @Leigh: I have posted reply in your email.

    in reply to: Slider Info Text (IE) #22026
    Sakin
    Keymaster

    @nativepoolspa: I cannot see the screenshot with the URL you have posted in. I cannot open the image.

    in reply to: How To Hide Excerpts From Showing On Front Page #22025
    Sakin
    Keymaster

    @Dottie: It’s because of the custom css issues. Replace the following CSS in Custom CSS

    .entry-title {
         font-size: 25px;
         line-height: 45px;
    {
    .home #primary .entry-summary { display: none; }

    to

    .entry-title {
         font-size: 25px;
         line-height: 45px;
    }
    .home #primary .entry-summary { display: none; }
    in reply to: Make 3 Columns Equal #22024
    Sakin
    Keymaster

    @Melanie: Second column in not the widget area. It’s the Featured Slider and then the latest post from homepage.

    in reply to: Left Align Header Menu #22023
    Sakin
    Keymaster

    @Melanie: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box. But what about the sub-menus.

    #fixed-header-top { background-color: #fff; }
    #fixed-header-top ul li { float: left; }
    #fixed-header-top ul.menu > li a { color: #080079; }
    #fixed-header-top ul.menu li:hover > a,
    #fixed-header-top ul.menu ul :hover > a,
    #fixed-header-top ul.menu a:focus {
    	color: #080079;
    }
    in reply to: HTML Box Under Header #22019
    Sakin
    Keymaster

    @Melanie: This is not possible by default. You can add HTML Box only in Widget Areas form “Appearance => Widgets”

    in reply to: Make 3 Columns Equal #22017
    Sakin
    Keymaster

    @Melanie: Thanks for your appreciation but sorry there is no option to make all three columns equal. For this you might need to hire customizer as this is responsive then and to change the width, we need to change for all devices. As, it’s bit complicated.

Viewing 20 posts - 8,361 through 8,380 (of 14,497 total)