Forum Replies Created

Viewing 20 posts - 10,661 through 10,680 (of 14,506 total)
  • Author
    Posts
  • in reply to: White Space Above/Below Header Image #14163
    Sakin
    Keymaster

    @Bookmama: You have to remove Social widget from “Header Top Sidebar” through “Appearance => Widgets” and same with header right sidebar. You can disable the header right sidebar from “Appearance => Theme Options => Header Options”, there you have to check on “Disable Header Right Sidebar” and save it.

    in reply to: responsive menu bug (exists on most if not all Catch themes) #14161
    Sakin
    Keymaster

    @tjrenk: You can add the same thing in the english website as well. What the website url of english site.

    in reply to: Sidebar #14157
    Sakin
    Keymaster

    @rbrt_bene: There is missing closing } in your css. Please copy as below.

    #hgroup-wrap { padding-bottom: 1rem; }
    #site-logo { padding-top: 0; }
    #secondary ul li { border-bottom: 1px solid #e6e6e6; }
    .page .entry-title { display: none; }
    .page.page-blog .entry-title { display: block; }
    @media screen and (min-width: 960px) {	
    #primary { width: 70%; }
    #secondary { width: 25%; }
    }
    in reply to: Sidebar #14149
    Sakin
    Keymaster

    @rbrt_bene: I see you have issue in your custom css box. Can you paste all your CSS from custom CSS to http://pastebin.com/ and send me the url.

    in reply to: responsive menu bug (exists on most if not all Catch themes) #14146
    Sakin
    Keymaster

    @tjrenk: Looks like you have customize the site that is why it is giving issue. You can add the following CSS in “Appearance => Theme Options => Custom CSS”

    .tinynav option:last-child {
        display: block;
    }
    in reply to: Sidebar #14144
    Sakin
    Keymaster

    @rbrt_bene: You can add the following CSS in “Appearance => theme Options => Custom CSS” box.. The following CSS will work for screen size above 960px. Below 960 is mobile devices. So, I advice not to change that. Change

    @media screen and (min-width: 960px) {	
    #primary { width: 70%; }
    #secondary { width: 25%; }
    }
    in reply to: Disable featured post slider at some pages #14134
    Sakin
    Keymaster

    @Teedok: You can add the following CSS.
    @media screen and (min-width: 960px) { p { margin-bottom: 20px; } }

    in reply to: Sidebar #14133
    Sakin
    Keymaster

    @rbrt_bene: Send me your site URL and then I will check in.

    in reply to: Quote Rotator #14132
    Sakin
    Keymaster

    @martyn: After you build child theme, you need to create functions.php file in your child theme. Then copy the whole function catcheverest_homepage_featured_content() from catcheverest-functions.php file to your child them functions.php file.

    Then add do_shortcode before $options[ 'homepage_featured_content' ][ $i ] See more details about shortcode at http://codex.wordpress.org/Function_Reference/do_shortcode

    in reply to: Big images with rss #14131
    Sakin
    Keymaster

    @Bill Pagonas: For that you need to check with the feed to give you the large image.

    in reply to: Quote Rotator #14127
    Sakin
    Keymaster

    @martyn: You can work on with child theme and them add option to accept shortcode. We cannot do that for parent theme.

    in reply to: Update #14123
    Sakin
    Keymaster

    @ashrafashraf: Child theme will work in updated version as well. But in you are upgrading from Free to Pro version then you need to edit the Template in child theme.

    in reply to: Mobile sizes- slider title to run full width #14122
    Sakin
    Keymaster
    in reply to: Different background colors for different widgets #14121
    Sakin
    Keymaster

    @youngwings: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    #secondary #blog_subscription-7.widget { background-color: #f9fdc3; }

    in reply to: Big images with rss #14120
    Sakin
    Keymaster

    @Bill Pagonas: Changing the image in the function will not work as the image you are importing is small size.

    So, you might consider add the css to change the container width.

    .post .post-thumb {
        width: 22%;
    }
    .post .post-article {
        margin-left: 4%;
        width: 74%;
    }
    in reply to: Quote Rotator #14116
    Sakin
    Keymaster

    @martyn: Sorry for security reason that homepage featured content will not accept the shortcode. Let me contact you though email so that I can check the plugin in your site.

    in reply to: Increase page heading size #14115
    Sakin
    Keymaster

    @oly: Ok then use the following CSS.

    @media screen and (min-width: 960px) {	
    #main .entry-header .entry-title { font-size: 50px; }
    }
    in reply to: Remove image borders from widgets. #14112
    Sakin
    Keymaster

    @Sonia: You can add the following CSS in “Appearance => Theme Options => Custom CSS” box.
    .widget-area .widget img { border: none; }

    in reply to: Disable featured post slider at some pages #14111
    Sakin
    Keymaster

    @Teedok: For pages you can take page id and for post you can take post ID. For example the page “Informace k závodu” Id is 2 so it will be as below:

    .page-id-2 #main-slider { display: none; }

    in reply to: Increase width of main slider title box #14110
    Sakin
    Keymaster

    @oly: Yes you can do that with media screen.

    /* For screen less then 960px */
    @media screen and (max-width: 960px) {	
    #main-slider .entry-container { max-width: 100%; }
    }
Viewing 20 posts - 10,661 through 10,680 (of 14,506 total)