Forum Replies Created

Viewing 20 posts - 8,361 through 8,380 (of 14,505 total)
  • Author
    Posts
  • in reply to: Adspace Widget is not working #22205
    Sakin
    Keymaster

    @EpicDreamer: Oh yes thanks for the info.

    Sakin
    Keymaster

    @rsolosky: Yes, it’s strange about your FF and haven’t found this issue.

    On Catch Everest Pro, you can create the page with no sidebar and I send you the demo link http://catchthemes.com/demo/catch-everest/sidebar-layout/no-sidebar-full-width/. You don’t need to adjust much about the content. But maybe if you want images to be full screen then you might need to upload the larger images.

    I am bit confused about your question saying that can it have no borders? Border are controlled by CSS and it can be removed easily that is not a problem. Just send me the screenshot of what you want then I will send your the css to do that.

    Thanks for your appreciation.

    in reply to: Adspace Widget is not working #22176
    Sakin
    Keymaster

    @EpicDreamer: I just check in and it’s working fine. Ok I will email you to get the code that you are trying to add in.

    in reply to: Featured Slider does not work #22173
    Sakin
    Keymaster

    @Irina: I see that you are using Featured Image Slider. But when you upload the image, you have clicked on “Attachment Post URL” and then Insert into Post that is why it couldn’t fine the image. You need to click on “File URL” and then “Insert Into Post”. See this screenshot http://www.pinterest.com/pin/548594798331557672/

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

    @drshento: It’s $44.99 for the Theme and you will get free update for 1 year. But after 1 year if you still wants the update then you need to renew it otherwise you can just use the theme without update.

    in reply to: different header image on pages #22139
    Sakin
    Keymaster

    @Raquel: Yes you cannot change the logo it’s the fixed image. If you want different header image in different page/post then you can use “Header Featured Image” instead of Header Logo.
    1. For that go to Catch Everest Pro theme options panel “Appearance => Theme Options => Header Featured Image Options”.
    2. In “Enable Featured Header Image” select “Entire Site, Page/Post Featured Image” and do the other necessary settings as per your need.
    What this does is that it adds the header image which can work like logo and in the page/post which has Featured Image will replace this default header image.

    in reply to: Childs theme #22136
    Sakin
    Keymaster

    @Raquel: You don’t need to create child theme unless you want to customize the core theme functions and styles. If you are customizing theme using “Theme Options” panel and WordPress default Custom Header, Custom Background, Menus and Widgets, then you don’t need child theme. It’s safe to update anytime you like.

    Here is the sample Child theme of Catch Everest Pro http://bit.ly/1mkrwVM theme. Once you install this you will see style.css and functions.php files. If you want to add any extra css then you can add it in this child theme style.css and for any extra functions and coding you can add it in this functions.php file.

    in reply to: Center Menu in Footer #22103
    Sakin
    Keymaster

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

    #colophon #access-footer ul.menu {
        text-align: center;
    }
    #colophon #access-footer ul.menu li {
        display: inline-block;
        float: none;
    }
    #colophon #access-footer ul.menu a {
        display: block;
        float: none;
    }
    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;
    }
Viewing 20 posts - 8,361 through 8,380 (of 14,505 total)