Forum Replies Created

Viewing 20 posts - 13,801 through 13,820 (of 14,318 total)
  • Author
    Posts
  • in reply to: Color changes and social media buttons #3512
    Sakin
    Keymaster

    @PMSkita: To increase the header image then you need to upload the larger header image. For customization need to add the following CSS in “Custom CSS” box in your Theme Options panel.

    /* To change main background color */
    #main {
    background-color: ##ffffff;
    }
    /* To change the background color of post wrapper */
    .hentry, .no-results, #author-info, #disqus_thread, #content .error404 {
    background-color: #ffffff;
    }
    /* To change header background color */
    #branding {
    background-color: #ffffff;
    }

    in reply to: Show Blog Profile Under Posts? #3511
    Sakin
    Keymaster

    @richardcharlesandrews1: Send me the sample screenshot so that I can add it in our to do list for future updates.

    in reply to: Sample Page #3510
    Sakin
    Keymaster

    Hi Dipesh,

    If you want to add the page in your homepage then do it through “Settings -> Reading” then click on A Static page and select the static page you want.

    But if you want use the selective posts from categories then do it from “Appearance -> Theme Options -> Theme Settings -> Homepage / Frontpage Category Setting”

    Regards,
    Sakin

    in reply to: Home Page #3509
    Sakin
    Keymaster

    Hi Dipesh,

    For showing blog post in your Homepage. Please check in the “Homepage / Frontpage Category Setting” in your Appearance -> Theme Options -> Theme Settings.

    For my each blogs, the floating image will be on left side by default. For that you need add featured image in the post. But if you want to make the floating image on the right side then you can add in the following CSS in “Custom CSS” box in your Theme Options:

    .post .post-thumb { float: right; }
    .post .post-article { margin-right: 4.82%; }

    On footer section, there is Site title and then copyright information. You need to upgrade to Simple Catch Pro version to edit the footer text easily. Or you can build child theme and then edit the footer.php on line 17, replace this one <?php bloginfo(‘name’)?>

    in reply to: Post Header Size #3508
    Sakin
    Keymaster

    @nolimit165: If you want to just adjust the size in the category pages then add the following CSS in “Custom CSS” box in your Theme Options
    .archive #main #content .post h2.entry-title { font-size: 34px; line-height:45px; }

    But if you want to adjust the title in all pages then just use the following css.
    #main #content .post h2.entry-title { font-size: 34px; line-height:45px; }

    in reply to: Unlink post titles #3506
    Sakin
    Keymaster

    @sabine: That post title is necessary for people to view the more post. Do you mean removing it from the homepage. For that you need to build child theme and then customize content.php file.

    Replace this
    <h2 class="entry-title"><a href="<?php the_permalink(); ?>" title="<?php printf( esc_attr__( ‘Permalink to %s’, ‘catchbox’ ), the_title_attribute( ‘echo=0’ ) ); ?>" rel="bookmark"><?php the_title(); ?></a></h2>

    with:
    <h2 class="entry-title"><<?php the_title(); ?></h2>

    in reply to: Why are my Featured Slider images transparent #3505
    Sakin
    Keymaster

    @Electricfan: Can you send me your site URL so that I can check it.

    in reply to: Show Blog Profile Under Posts? #3504
    Sakin
    Keymaster

    @richardcharlesandrews1: If you are talking about adding the author profile in the Posts then you need to add plugin.

    in reply to: Removal of post titles #3503
    Sakin
    Keymaster

    @andrea: if you are talking about hiding the site title then add the following CSS in “Custom CSS” box in your Theme Options
    .entry-title { display: none; }

    in reply to: Color changes and social media buttons #3502
    Sakin
    Keymaster

    @PMSkita: Your site is not opening. It’s shows “Error establishing a database connection”. Let me know once your site is opening and then I will show you.

    in reply to: 3 column page #3500
    Sakin
    Keymaster

    @jencinas: Send me your child theme zip file and then I will look at it.

    in reply to: Custom Header Problem #3499
    Sakin
    Keymaster

    @chukarnold: Sorry There was missing css. Can you remove the old css I gave you and add the following css. Just copy the CSS code below and paste it in “Custom CSS” box in your Theme Options.

    #header .logo-wrap { position: relative; }
    #site-details { position: absolute; top: 0; left: 20px; }
    #site-logo { padding-top: 100px; }

    in reply to: Title Above Header/Favicon / Menu tabs #3498
    Sakin
    Keymaster

    @kott6850: Simple Catch Pro theme don’t have option to add the site title and description above the header image. So, It’s better you create the header image with the title and description as Image and disable the header and site title through Logo Options in Theme Options.

    I see that you have already disable the sc symbol. Let me know if there is anything I can help you with.

    in reply to: Custom Header Problem #3480
    Sakin
    Keymaster

    @chukarnold: Just add the following CSS in “Custom CSS” box in your Theme Options panel.

    #header .logo-wrap { position: relative; }
    #site-details { position: absolute; top: 0; }
    #site-logo { padding-top: 100px; }

    in reply to: Custom Header Problem #3468
    Sakin
    Keymaster

    @chukarnold: To give you proper css. You need to remove the css that you have added for header. And add the header logo and all to default.

    in reply to: Removing posts from front page or removing date and posted by #3467
    Sakin
    Keymaster

    @heathermcguffin: Then remove the old css I gave and add the following it will hide both:
    .entry-meta { display: none; }

    For slider transition effect. You have already change from Fade. Default is fade. Maybe you have cache. In that case you need to clear your cache to see the changes.

    in reply to: Placing Adsense Ads #3466
    Sakin
    Keymaster

    @fidlerten: Yes sure you can send me WordPress access once it is live and I will help you with css but don’t expect for coding changes.

    in reply to: Placing Adsense Ads #3460
    Sakin
    Keymaster

    @fidlerten: see this site http://www.mxrealm.com have done it.

    in reply to: Featured Slider #3456
    Sakin
    Keymaster

    @sbarrington114: to remove the content in homepage you can just add the following CSS in your “Custom CSS” box in Theme Options panel
    .home #primary { display: none; }

    For slider, there is no option to put custom url for some. If you choose Featured Post slider then it will link to it’s respective posts. Only if you choose Featured Image slider you can choose any custom URL.

    in reply to: search field in banner #3455
    Sakin
    Keymaster

    @roffless: Actually now you have sidebar top widget to add anything in the header right sidebar. But if you like the old one then add the following css in Custom CSS box in your Theme Options panel.

    #header-content { position: relative; }
    #sidebar-top { position: absolute; right: 0; }

Viewing 20 posts - 13,801 through 13,820 (of 14,318 total)