Forum Replies Created

Viewing 20 posts - 5,761 through 5,780 (of 14,504 total)
  • Author
    Posts
  • in reply to: Whitespace between featured post slider and homepage headline #48040
    Sakin
    Keymaster

    @Stanley: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box.

    #masthead {
        padding-bottom: 0;
    }
    #homepage-message {
        margin-top: 0;
    }
    in reply to: line between secondary menu and slider #48039
    Sakin
    Keymaster

    @Gerald:
    1. In homepage headline, you can split the content to next line by adding in the HTML code <br />

    2. That bouncy effect is not there in this theme. Sorry for that.

    3. I don’t see header top sidebar in your site. But to make that background transparent. You can add the following css:
    .header-sidebar { background: none transparent

    in reply to: Embedding a YouTube Video in a Table #48038
    Sakin
    Keymaster

    @Whitney: You can wrap it with the div with max width logic. For example: the following code will load your video with maximum 600px width.

    <div style="max-width: 600px">https://www.youtube.com/watch?v=46lb7hn4ukM</div>

    in reply to: Change site title font to external font style possible? #48037
    Sakin
    Keymaster

    @Salome: That’s nice 🙂

    in reply to: Social networking theme #48022
    Sakin
    Keymaster

    @Joaozinho: Sorry WordPress Theme is not social networking. So, to add that features you need to add in Plugin. Search for plugin at http://wordpress.org/plugins

    in reply to: Remove shadow around certain images #48021
    Sakin
    Keymaster

    @fmck718: For that page only, you can add the following css in “Appearance => Theme Options => Custom CSS” box.

    .page-id-554 #content img {
        box-shadow: none;
    }
    in reply to: line between secondary menu and slider #48020
    Sakin
    Keymaster

    @Gerald: I see that there is extra css which is adding the border. Can you check if you could find the following css. If you find that then please delete that.

    #masthead {
        border-bottom: 1px solid #6a6;
    }

    Otherwise, you need to replace #masthead { border: none; } with the following css:
    .site #masthead { border: none; }

    in reply to: Change Post Title Font Size #48019
    Sakin
    Keymaster

    @Kim: Ok we will add in font size option for page/post title in next version update. For now, you can do it manually. In the following css, you can change the font size as per your need and then add it in “Appearance => Theme Options => Custom CSS” box.

    @media screen and (min-width: 961px) {
        .entry-title { font-size: 26px; }
    }
    in reply to: Featured Page Widget (Optional) title color #48017
    Sakin
    Keymaster

    @Keir: Thanks for posting the CSS issue. We will fix that in next version update. For now, you can add the following css in “Appearance => Theme Options => Custom CSS”

    .widget-area .widget .widget-title a {
    	color: #ddd;
    }
    in reply to: Adjusting Padding on Main Page #48016
    Sakin
    Keymaster

    @Scott: Try adding in the following css in “Appearance => Theme Options => Custom CSS” box. You can further reduce the margin bottom as per your need.

    .home .site-content .hentry {
        margin-bottom: 20px;
    }

    Note: I see that you have empty <p></p> tag in your homepage post. That is also taking spaces. So, go to text mode in your editor and remove that.

    in reply to: Featured image blurry #48013
    Sakin
    Keymaster

    @Michaela: Try just reducing the image quality little but like make the quality 60 or 70. So, the image size will be about 400kb and so on.

    If you have large images then you can use the cache plugin to lead the images from cache. Check out W3 Total Cache plugin.

    in reply to: How to change menu hover and font #48012
    Sakin
    Keymaster

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

    #branding ul.menu li:hover > a,
    #branding ul.menu a:focus {
    	background: none transparent;
    	font-weight: bold;
    	text-decoration: underline;
    }

    2. Which font are you trying to change to. If that is web fonts then you can just add the following css in “Appearance => Theme Options => Custom CSS” box.

    #branding ul.menu  {
        font-family: "Helvetica Neue", Helvetica, Arial;
    }

    3. Yes, just add the following css in “Appearance => Theme Options => Custom CSS” box.

    #main {
        background-color: #fff;
    }
    in reply to: line between secondary menu and slider #48011
    Sakin
    Keymaster

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

    #homepage-message .left-section {
        text-align: center;
        width: 100%;
    }

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

    #featured-post .entry-title {
        text-align: center;
    }

    3. This is bit complicated. But I will try. Add the following css in “Appearance => Theme Options => Custom CSS” box

    .home .site {
        background: none transparent;
    }
    .home #masthead {
        background-color: #fff;
        margin-bottom: 20px;
    }
    #main-slider,
    #homepage-message,
    #main #featured-post {
        margin-bottom: 20px;
    }

    4. This has already been solved by answer 3

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

    .no-sidebar-full-width #main {
        padding-left: 0;
        padding-right: 0;
    }

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

    .page .entry-header {
        display: none;
    }
    in reply to: line between secondary menu and slider #48010
    Sakin
    Keymaster

    @Gerald: To remove the line between the secondary menu and the slider, you can add the following css in “Appearance => Theme Options => Custom CSS” box:
    #masthead { border: none; }

    in reply to: Remove "Categorie Archive" Box #48009
    Sakin
    Keymaster

    @Tillman: You can add the following css in “Appearance => Theme Options => Custom CSS” box to remove the archive page header text:
    .archive .page-header { display: none; }

    in reply to: I want to delete the posts in the corner #48008
    Sakin
    Keymaster

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

    in reply to: Menu Bar Has Changed #48007
    Sakin
    Keymaster

    @herrb: Sorry I don’t get it what you mean. When I check in your menu, it’s working fine.

    in reply to: Menu on phone #48006
    Sakin
    Keymaster

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

    @media screen and (max-width: 960px) {	
    #access-top .tinynav, #access .tinynav { display: none; }
    #header-menu ul.menu, #fixed-header-top ul.menu { display: block; }
    }
    in reply to: Featured image blurry #47982
    Sakin
    Keymaster

    @Michaela: I check in your images in the slider. Our theme has nothing to so with your image blurred. As the image file you have uploaded is quite blurred.
    See this:
    travelintense.com/wordpress/wp-content/uploads/2014/11/dominica_middlehamfalls-1279×550.jpg

    Sakin
    Keymaster

    @aleks.mavric123: Then you can replace the css
    #site-logo { display: none; }
    With the following css:
    .logo-wrap { display: none; }

Viewing 20 posts - 5,761 through 5,780 (of 14,504 total)