New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 701 through 725 (of 893 total)
  • Author
    Posts
  • in reply to: Where do I set the amount of images? #711

    StartupWP
    Keymaster

    You’re welcome.

    in reply to: Where do I set the amount of images? #709

    StartupWP
    Keymaster

    `.single-post .entry-content .attachment-post-thumbnail{display:none}`

    in reply to: Video Instead of Slider? #706

    StartupWP
    Keymaster

    Email sent.

    in reply to: Video Instead of Slider? #704

    StartupWP
    Keymaster

    All looks good. May we email you directly to get the login details and have a look at your live setup?

    in reply to: Video Instead of Slider? #702

    StartupWP
    Keymaster

    Let’s do this, share exactly what you have in your child theme stylesheet in a reply. It may be easier to use http://pastebin.com/.

    Otherwise, we’ll be here if you need more help after working on it some more.

    in reply to: Where do I set the amount of images? #701

    StartupWP
    Keymaster

    Add the following CSS and only the images you specifically set as the featured images will appear on the blog page:

    `.blog .entry-content img{display:none}
    .blog .entry-content .attachment-post-thumbnail{display:inline}`

    https://startupwp.com/topic/customizing-your-theme/

    in reply to: Where do I set the amount of images? #698

    StartupWP
    Keymaster

    Thank you, the issue is very clear. Can we get a link to the website in question to see if we can investigate further?

    Likely an issue of Summary vs Full Content under Settings > Reading.

    in reply to: Video Instead of Slider? #697

    StartupWP
    Keymaster

    Just tested and it works fine. Not a container issue, it will reside safely and symmetrically in the #wrapper div.

    Possibly an issue with the implementation of the child theme?

    in reply to: Video Instead of Slider? #686

    StartupWP
    Keymaster

    Try this method instead:

    <?php if (is_home()) { ?>
    WHATEVER YOU WANT HERE
    <?php } ?>

    Quick tip, before trying it with the video code, just try plain text “abc” or “123” for example just to make sure that it appears.

    If it does, but then the video code doesn’t work you’ll have pinpointed that something is wrong with the video embed code. It is also recommend to use the full URL paths instead of relative ones as you’re using when it comes to WordPress.

    If you’re still having issues with your video code, a great error checking tool for HTML can be found here:

    http://validator.w3.org/#validate_by_input

    in reply to: Video Instead of Slider? #684

    StartupWP
    Keymaster

    Leave the code active and provide the link to your website please and we’ll have a look.

    in reply to: Landing page #683

    StartupWP
    Keymaster

    Wonderful to hear.

    You’re welcome.

    in reply to: Landing page #680

    StartupWP
    Keymaster

    Update to:

    <table width="788" height="422" border="0" align="center" cellpadding="0" cellspacing="0" id="Table_01">
    <tr border="0" class="top">
    <td><img src="http://www.robertagavioli.it/wp-content/uploads/2013/04/header.png" alt="" width="788" height="231" /></td>
    </tr>
    <tr border="0" class="middle">
    <td>< HERE I HAVE INSERTED WHAT DID YOU SEE THERE , form…ecc></td>
    </tr>
    <tr border="0" class="bottom">
    <td><img src="http://www.robertagavioli.it/wp-content/uploads/2013/04/footer.png" alt="" width="788" height="98" /></td>
    </tr>
    </table>

    in reply to: Video Instead of Slider? #678

    StartupWP
    Keymaster

    You’ll need to setup a child theme:

    https://startupwp.com/topic/child-theming/

    And copy over header.php from the main theme.

    Find this line:

    <?php if ( $options['slider'] ){ echo '<div id="slider">'.do_shortcode('[nivoslider slug="slider"]').'</div>'; } ?>

    And replace with:

    <?php if ( is_home() ) {echo 'YOUR VIDEO CODE HERE';} ?>

    in reply to: Landing page #677

    StartupWP
    Keymaster

    Strange, even trying a CSS reset on it didn’t seem to work.

    Try giving the top tr a class of top and add the following CSS:

    .top {
    background: url(http://www.robertagavioli.it/wp-content/uploads/2013/04/mid_bg.png) no-repeat scroll center bottom transparent;
    }

    in reply to: Landing page #674

    StartupWP
    Keymaster

    Give that middle tr a class of say middle.

    So the tr that wraps the area starting with “Come andare…“, give it the class like so:

    <tr class="middle">

    Now, we can add the following CSS:

    .middle {
    background: url(http://www.robertagavioli.it/i-5-segreti/images/mid_bg.png) repeat-y scroll 0 0 transparent;
    }

    https://startupwp.com/topic/customizing-your-theme/

    Will likely require a bit more tweaking, we’ll be here to help.

    in reply to: Landing page #665

    StartupWP
    Keymaster

    That’s correct, it’s completely blank like a painter’s canvas for you to add whatever you want, and only what you want.

    For example, a YouTube video, some text, a “Call to Action” button. You’ll find that the WP editor lets you add all sorts of content. You can also utilize some of the built-in shortcodes:

    https://startupwp.com/demo/shortcodes/

    The sky is the limit. What specifically did you have in mind?

    in reply to: Front Page summary/ excerpt of post #662

    StartupWP
    Keymaster

    Checkout a plugin like:

    http://wordpress.org/extend/plugins/custom-excerpts/

    For more control, once you’ve got it about setup how you like give us the link to your site and we can help customize further with CSS.

    in reply to: Two right sidebars #660

    StartupWP
    Keymaster

    It’s no different than setting the template in pages. It may seem tedious now if you have a lot of posts, but easy in the future when preparing new posts. We’ll definitely be looking into a global option in the future as well.

    Now, for the homepage:

    1. Setup a child theme:

    https://startupwp.com/topic/child-theming/

    2. Copy index.php over from the parent theme to the child theme.

    3. Find this line and remove it:

    <?php get_sidebar(); ?>

    and then add this code, right below <?php get_header(); ?>:

    <div id="lsidebar-sidebar">
    <?php if ( is_active_sidebar("lsidebar-widget-area") ) : ?>
    <div id="lsidebar" class="widget-area">
    <ul class="sid">
    <?php dynamic_sidebar("lsidebar-widget-area"); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </div>

    4. Add to your CSS:

    #lsidebar-sidebar {
    margin: 0 0 0 2%;
    width: 30%;
    }

    https://startupwp.com/topic/customizing-your-theme/

    Please note that the homepage sidebar content will now be controlled by the Left Sidebar area under Appearance > Widgets.

    The Easy Way

    Now that the process had been explained, you can simply download, install and activate the child theme we’ve prepared for you like any normal theme under Appearance > Themes to apply the customizations:

    startuppro-child(sidebar-left-posts-page)

    in reply to: Two right sidebars #658

    StartupWP
    Keymaster

    Okay, we’ve just updated the theme to now include custom post templates:

    https://startupwp.com/topic/changelog/

    This means you can now change the sidebar layout for posts just like you can pages.

    Now, for the homepage, are you using it as the posts page or a static content page? If you’re not sure, please provide the link to your website and we’ll be able to tell.

    in reply to: Two right sidebars #652

    StartupWP
    Keymaster

    It does support a two sidebars right page template.

    But, making literally every webpage of your site have two sidebars is an entirely different thing, though still possible with customization.

    Let us know.

    in reply to: Resizing embeds #649

    StartupWP
    Keymaster

    You’re welcome.

    in reply to: Resizing embeds #647

    StartupWP
    Keymaster

    Aah, quick update. The wording is now Text.

    So when editing a page or post you’re probably going to be in Visual mode by default. Look top-right just above the editor textarea and you’ll see the button to switch to Text mode, which is essentially the HTML editor mode.

    in reply to: echo and escaped symbols in functions.php #645

    StartupWP
    Keymaster

    The theme will be getting an overall code quality audit soon for all code, in all files. Look for improvements over the next couple of updates.

    Thanks

    in reply to: Social Profile Settings, in new window needed #643

    StartupWP
    Keymaster
    in reply to: Refund #641

    StartupWP
    Keymaster

    No problem. Refund issued.

Viewing 25 posts - 701 through 725 (of 893 total)