Forum Replies Created

Viewing 20 posts - 2,321 through 2,340 (of 14,507 total)
  • Author
    Posts
  • in reply to: Problem with PageSlider on the main page #66648
    Sakin
    Keymaster

    @Delle: Thanks for the cooperation. I found the issue. It was conflicting with “SiteOrigin Widgets Bundle” plugin “Slider widget” module. I have off Slider Widget module and your slider is working fine.

    in reply to: Logo position #66633
    Sakin
    Keymaster

    @flp2001: They are using Full Frame Pro version where you have option to disable header toggle from “Appearance => Customize => Theme Options => Fixed Header Top Options”. Then added the following css:

    #site-branding,
    #site-header {
        text-align: center;
        width: 100%;
    }
    #site-logo {
        display: block;
        float: none;
        margin: 0 auto;
    }

    But you are using free version.

    in reply to: change the width of the full theme #66632
    Sakin
    Keymaster

    @David: ok then replace the previous css with the following css:

    @media screen and (min-width: 884px) {
        .site {
            max-width: 884px;
            width: 100%;
        }
        #main {
            padding: 20px;
            width: 80%;
        }
        .sidebar-primary {
            padding: 20px;
            width: 20%;
        }
    }
    in reply to: Logo position #66630
    Sakin
    Keymaster

    @flp2001: for top of the page, you have small logo icon image.

    in reply to: Enlarging the Logo #66629
    Sakin
    Keymaster

    @Craig: The logo icon that you have added is too large. See this http://vps153982.ovh.net/wp-content/uploads/2015/05/SBS-Logo-for-Inside-Marine.jpg. This is not good for site loading.

    So, upload image smaller logo icon image from “Appearance => Customize => Theme Options => Fixed Header Top Options”. Then you can increase the max height, right now it’s only 44px. 2x mean 88px. Add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #logo-icon img { max-height: 88px; }

    in reply to: promotion button – hover – change FRAME colour #66627
    Sakin
    Keymaster

    @Gudrun: Sorry for that. OK to change that border color on hover, you need to change the color code as per your need in the following css and then add it in “Appearance => Customize => Theme Options => Custom CSS Options” box:
    #promotion-message .right a:hover { border-color: #666; }

    in reply to: Problem with PageSlider on the main page #66626
    Sakin
    Keymaster

    @Delle: For this I need to check in your site. I will email you.

    in reply to: Logo position #66625
    Sakin
    Keymaster

    @flp2001: Try adding following css in “Appearance => Customize => Theme Options => Custom CSS” box:

    #masthead {
        background: transparent none;
        border-bottom: none;
    }
    #masthead {
        display: block;
        opacity: 1 !important;
    }
    in reply to: Featured image blurry #66624
    Sakin
    Keymaster
    in reply to: Scroll Down To A Post #66621
    Sakin
    Keymaster

    @matthewseanmclachlan: Not in my scope, you need to hire a customizer to add that script. For that you need to build child theme and add javascript.

    in reply to: Scroll Down To A Post #66619
    Sakin
    Keymaster

    @matthewseanmclachlan: Scroll up is also doing same. It links to #page which is top of your page. It also have Javascript to make it smooth scroll and show/hide.

    in reply to: How to Reduce Space Between Posts #66618
    Sakin
    Keymaster

    @matthewseanmclachlan: For top, you need to remove white space from your image itself. See your image http://www.trendfly.org/wp-content/uploads/2015/09/Projects_1260.png

    Then add the following css:

    .home .post-44,
    .home .post-44 .entry-content,
    .home .post-44 .entry-content p {
        margin: 0;
        padding: 0;
    }
    .home .post-44 .entry-header {
        display: none;
    }
    in reply to: Make titles larger via css full featured content #66617
    Sakin
    Keymaster

    @Paul: Not sure which element are you talking about. Are you talking about Featured Content headline with the text “Welcome To Novalee because of you”. For that, you can change the font size in the following css as per your need and then add it in “Appearance => Theme Options => Custom CSS” box:

    @media screen and (min-width: 768px) {
        #promotion-message h2 { font-size: 30px; }
    }
    in reply to: Show Comments Below Posts #66616
    Sakin
    Keymaster

    @Deb: Sorry, I don’t get it what you mean. Comment will show without click on Reply button, see this demo http://catchthemes.com/demo/adventurous/about/page-with-comments/

    Maybe, you are taking about different. If so then please explain it.

    in reply to: Featured-grid-Content rounded corners #66614
    Sakin
    Keymaster

    @Justin: For border radius, you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    #featured-grid-content .wrapper {
        border-radius: 25px;
        -moz-border-radius: 25px;
        -webkit-border-radius: 25px;
    }
    #featured-grid-content .grid-box.first {
        border-radius: 25px 0 0 25px;
        -moz-border-radius: 25px 0 0 25px;
        -webkit-border-radius: 25px 0 0 25px;
    }
    #featured-grid-content .grid-box + .grid-box {
         border-radius: 0 25px 0 0;
        -moz-border-radius: 0 25px 0 0;
        -webkit-border-radius: 0 25px 0 0;
    }
    #featured-grid-content .grid-box + .grid-box + .grid-box  {
         border-radius: 0 0 25px;
        -moz-border-radius: 0 0 25px;
        -webkit-border-radius: 0 0 25px;
    }

    I don’t think box shadow will be visible in grid content, as it has hover effect.

    in reply to: promotion button – hover – change FRAME colour #66595
    Sakin
    Keymaster

    @Gudrun: In Gridalicious Pro theme, you can change the color of promotion button on hover, from “Appearance => Customize => Color Options => Promotion Headline Color Options” and change “Promotion Headline Button Hover Background Color” and “Promotion Headline Button Hover Text Color” then click on “Save & Publish”

    in reply to: change the width of the full theme #66594
    Sakin
    Keymaster

    @David: ok so you want to reduce it, then you can add the following css in “Appearance => Customize => Theme Options => Custom CSS Options” box:

    @media screen and (min-width: 1153px) {
        .wrapper { width: 1130px; }
        #main { width: 883px; }
    }
    in reply to: change the width of the full theme #66590
    Sakin
    Keymaster

    @David: Can you post in your site URL and let me know the size that you want to make it fro your content.

    in reply to: Headings Font Size option (for slider) #66588
    Sakin
    Keymaster

    Ok for that you can replace your css:

    @media screen and (min-width: 961px) {
        #main-slider .entry-header .entry-title { font-size: 35px; background: rgba(64, 64, 64, .8); }
        #main-slider .entry-content { font-size: 20px; background: rgba(64, 64, 64, .8); }
    }

    with the following css, where I have added in the width. Just change the width as per your need.

    @media screen and (min-width: 961px) {
        #main-slider .entry-container { width: 50%; }
        #main-slider .entry-header .entry-title { font-size: 35px; background: rgba(64, 64, 64, .8); }
        #main-slider .entry-content { font-size: 20px; background: rgba(64, 64, 64, .8); }
    }
    in reply to: catch Studio theme. Background. Please help! #66585
    Sakin
    Keymaster

    @Diren: Sorry I cannot support with this screenshot. I need your site URL. Let me know if you have test or live site URL.

Viewing 20 posts - 2,321 through 2,340 (of 14,507 total)