Forum Replies Created

Viewing 20 posts - 11,261 through 11,280 (of 14,498 total)
  • Author
    Posts
  • in reply to: Header Background Image #12273
    Sakin
    Keymaster

    @lcoutlaws: If you want to change in to color then you can add the following CSS in “Appearance => Theme Options => Custom CSS” box.

    #branding {
        background: none #fff;
    }

    But if you want different image then you need to add the image url as the following css.

    #branding {
        background: url("Here enter you full image url") repeat scroll 0 0 transparent;
    }
    in reply to: Eliminate Blanks #12271
    Sakin
    Keymaster

    @Bill Pagonas: it has to be display inline and float left.

    #navmenu li {
        display: inline;
        float: left;
    }
    in reply to: Change background color of search widget #12270
    Sakin
    Keymaster

    @iceman027: I see that you have added background color for your widget in you Custom CSS box twice. I see the following CSS. Why did you added 2 times.

    .widget {
       background-color : #004000;
    }
    .widget {
       background-color: #004000;
       color: #e0b303;
    }

    For search box at header right background. You can add the following css.

    #sidebar-header-right .widget_search {
        background-color: #e0b303;
    }
    in reply to: Remove Page Titles #12269
    Sakin
    Keymaster

    @barneycat25: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to hide the page title.
    .page .entry-header .entry-title { display: none; }

    in reply to: Header Image only on Homepage #12268
    Sakin
    Keymaster

    @adasprom: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box to show header only in homepage.

    #hgroup-wrap { display: none; }
    .home #hgroup-wrap { display: block; }
    in reply to: error in one of the files #12267
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you through email

    in reply to: error in one of the files #12266
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you through email.

    in reply to: error in one of the files #12265
    Sakin
    Keymaster

    @thorslev: Maybe your download is not completed. So, re-download it and upload it. If problem still exist then let me know it. I will contact you though email.

    in reply to: How to center header #12264
    Sakin
    Keymaster

    @pohl: It is not enough with float none. You can add the following CSS in “Appearance => Theme Options => Custom CSS” box

    .logo-wrap {
        float: none;
        text-align: center;
        width: 100%;
    }
    in reply to: Spacing Issues #12261
    Sakin
    Keymaster

    @Jodi: I don’t know what you have done in your site. So, send me the URL of the page you have issue with.

    in reply to: gallery loading problems and type options #12260
    Sakin
    Keymaster

    @kz2284: Your gallery page is loading fine for me. There is no such format in WordPress.org. It’s only for WordPress.com users. Maybe you can add Jetpack plugin and activate the module for that. Usually WordPress.com features are added through Jetpack plugin.

    in reply to: How to remove author and change font of post title #12259
    Sakin
    Keymaster

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

    /* Title as Italic */
    .entry-header .entry-title { font-style: italic; }
    /* Hide Author */
    .entry-meta .by-author { display: none; }
    in reply to: Slider disappeared from my front page #12258
    Sakin
    Keymaster

    @Elisabetta: Ok may be your site was loading. Great. 🙂

    in reply to: SLIDER HELP – Link to Page, not Post #12257
    Sakin
    Keymaster

    @Oceani5: Sorry you cannot add page in Catch Everest Free Theme as it only have Featured Post Slider. To add page, you need to upgrade to Pro version and select Featured Page Slider. See more about Catch Everest Pro at http://catchthemes.com/theme-instructions/catch-everest-pro/

    in reply to: Category menu with image #12256
    Sakin
    Keymaster

    @interiorsalvage: Yes plugins are good enough.

    in reply to: hide navigation from 1 page #12241
    Sakin
    Keymaster

    @keithphotos: Either you have to build child and write the custom code. But the easiest one will be to add in the css to hide in that page. So, can you send me the page url where you want to hide it then I can send you the Custom CSS to hide, which you can just add in your “Appearance => Theme Options => Custom CSS” box.

    in reply to: Change the Mini Menu Heading Name #12240
    Sakin
    Keymaster

    @s-design: For that you need to change the menu script. So, check in your catcheverest-menu.js which is uncompressed version of catcheverest-menu.min.js . So, in that file change the below script

    jQuery("#masthead .menu").tinyNav({
    	'active' : 'current-menu-item', // String: Set the "active" class
        header: '' // String: Specify text for "header" and show header instead of the active item
    });

    with this one

    jQuery("#masthead .menu").tinyNav({
      active: 'selected', // String: Set the "active" class
      header: 'Main Menu', // String: Specify text for "header" and show header instead of the active item
      label: '' // String: Sets the <label> text for the <select> (if not set, no label will be added)
    });

    Then compress and add it in catcheverest-menu.min.js

    in reply to: Different Images on every page and custom home page #12239
    Sakin
    Keymaster

    @iqbalsaini: Both the question, you have posted in need to fully customize the the theme. So, you need to build child then and do the customization. This is bit difficult, so I recommend you hiring developer. You can can use elance.com, odesk.com, jobs.wordpress.net

    in reply to: Homepage Featured Content Background Color #12238
    Sakin
    Keymaster

    @aaronborrego: Sorry don’t have that option. But why don’t you merge two images into one image and upload it. Then it will look like you have two images.

    in reply to: Header Tags Not Working – H1, H2… #12217
    Sakin
    Keymaster

    @abtaxlaw: Let me know what you want to do with the H1, H2 tags. Also send me your site URL so that I can check in your site.

    You can change the font size from “Appearance => Theme Options => Font Size”

Viewing 20 posts - 11,261 through 11,280 (of 14,498 total)