New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 151 through 175 (of 893 total)
  • Author
    Posts
  • in reply to: Header #2083

    StartupWP
    Keymaster

    1. Adding CSS.

    Log into your WP admin and from the main menu, go to:

    Appearance > StartupPro Options > Scroll Down to Advanced Editing > Find the Box that Says Custom CSS Below It > Paste in:

    #site-title a, #site-title h1 a, #site-title h1 {
      color: #000;
      font-size: 30px;
      font-weight: normal;
      margin: 0;
      padding: 0;
      text-shadow: none;
    }

    Then click Save Options.

    Let us know exactly how you’d like to change it and we’ll write it for you. What color, what font or font style, how big or small etc.

    2. In the demo (https://startupwp.com/demo/), there’s only a logo image, nothing else. To add a logo or header image, go to:

    Appearance > StartupPro Options > Image URLs > Logo Image URL > Click Select/Upload Image > When the Image is Selected Click Insert into Post > Save Options

    in reply to: Header #2080

    StartupWP
    Keymaster

    To customize the site title header use:

    #site-title a, #site-title h1 a, #site-title h1 {
      color: #000;
      font-size: 30px;
      font-weight: normal;
      margin: 0;
      padding: 0;
      text-shadow: none;
    }

    Simply copy and paste:

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

    Change it up however you like or make specific requests if you’d like us to write the code for you.

    Generally, there’s not a good reason to have both a site title in the form of text AND a logo. Normally, you’d either just have the text there or if you wanted to have a logo, the text would appear within the logo graphic.

    If you still want both, this will probably require more advanced customization than you might be comfortable with.

    One creative solution we could utilize might be to have you upload a logo graphic and then we can use the Description (set under Settings > General) for the text you want to appear alongside the image.

    in reply to: Can't crop images #2066

    StartupWP
    Keymaster

    Perhaps you might benefit from a plugin like:

    https://wordpress.org/plugins/manual-image-crop/

    in reply to: widget area not showing #2064

    StartupWP
    Keymaster

    Above:

    #branding {
      margin-bottom: 30px;
    }

    Below:

    #header {
      padding-bottom: 30px;
    }
    in reply to: Can't crop images #2062

    StartupWP
    Keymaster

    Can you be more specific? Which images exactly and how exactly are you looking to alter them?

    in reply to: widget area not showing #2061

    StartupWP
    Keymaster

    1. Make sure you place widgets in the Main sidebar area, not the Right one. Right is used for the Left and Right sidebar template.

    2. Buttons:

    #content input[type="submit"], #content input[type="reset"], #container #searchsubmit, .button, #new-topic {
      background: #000;
      border: 0 none;
      box-shadow: none;
      color: #ccc;
    }

    Form field borders:

    #container input, #container textarea {
      border: 1px solid #666;
    }

    3. You can adjust by adding:

    body.custom-background {
      background-position: center 100px;
    }

    Then change up 100px as needed.

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

    in reply to: Unable to Customize Theme #2060

    StartupWP
    Keymaster

    StartupPro is not built with the WordPress customizer in mind, it has its own unique settings under:

    Appearance > StartupPro Options

    in reply to: I'm confused #2056

    StartupWP
    Keymaster

    These plugins are bundled as a bonus and are completely optional. Not everyone will have a use for them, but offer some extra power if you need it.

    We briefly cover them here https://startupwp.com/topic/using-included-premium-plugins/ and link to the complete documentation for each plugin.

    Enjoy!

    in reply to: Move twitter feed to sidebar #2054

    StartupWP
    Keymaster

    Sure, but before digging in you might find it a better way to go to simply grab the official widget from here:

    https://twitter.com/settings/widgets

    And paste it right into a Text widget under Appearance > Widgets.

    And that way you’ll have more control and can move the widget around freely.

    in reply to: Nivo Slider On Multisite #2052

    StartupWP
    Keymaster

    Unfortunately, they’re not sure what’s causing the issue either.

    Not likely, but worth a shot, one last thing to try, possibly name the ID something else, perhaps main:

    <?php do_shortcode( '[nivoslider slug="main"]' ); ?>

    Then make a slider under that ID and see if it makes any difference.

    Other than that, and we wish we could solve them all, at a loss.

    in reply to: PHP update from 5.2 to 5.4 Crashed StartupPro #2051

    StartupWP
    Keymaster

    Great. :)

    in reply to: Nivo Slider On Multisite #2047

    StartupWP
    Keymaster

    You said you contacted Dev7 already, but we’ll go ahead and put a ticket in with them to have them review this topic and see if they have any thoughts.

    Thank you for your patience.

    in reply to: Nivo Slider On Multisite #2045

    StartupWP
    Keymaster

    Apologies for being dense, is the problem now resolved or you need further help?

    in reply to: Nivo Slider On Multisite #2043

    StartupWP
    Keymaster

    Try editing header.php and changes this line:

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

    to just:

    <?php do_shortcode( '[nivoslider slug="slider"]' ); ?>

    in reply to: Nivo Slider On Multisite #2041

    StartupWP
    Keymaster

    Apologies, the issue is still too vague to know how to proceed in supporting your request. Please explain the issue in as much detail as you can, is everything up-to-date, are you getting any error messages, can you explain the step by step process to reproduce the error etc.?

    Thank you.

    in reply to: Nivo Slider On Multisite #2039

    StartupWP
    Keymaster

    Open up header.php and find the shortcode [nivoslider slug="slider"]. This is where you can play around with how this is implemented. Introducing a child theme (https://startupwp.com/topic/child-theming/) at this point if you haven’t already might be a good idea, but might also cause other hurtles.

    If this needs to be different on multiple sites in a multisite install, but having just the one slider ID is conflicting and you need to use multiple IDs dynamically, we’ll need to implement a PHP if statement.

    Before we dig in, are we understanding the issue correctly and how many sites is this intended to support, a few, unlimited? Any other details that might help are appreciated.

    Thank you.

    in reply to: More bottom margin for featured image #2036

    StartupWP
    Keymaster

    :)

    in reply to: More bottom margin for featured image #2034

    StartupWP
    Keymaster

    You’re welcome.

    .attachment-post-thumbnail {
      margin-bottom: 20px;
    }
    .single-post .category-hanganyag .attachment-post-thumbnail {
      display: none;
    }

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

    in reply to: More bottom margin for featured image #2032

    StartupWP
    Keymaster

    Link to an example post on your site please.

    in reply to: Different widgets #2031

    StartupWP
    Keymaster
    in reply to: Breadcrumbs Problem #2028

    StartupWP
    Keymaster

    We may change up the breadcrumbs feature in the future, but for now you’ll want to use posts with categories to get the effect you’re after.

    Posts and pages can be used interchangeably in different creative ways for the most part.

    If not wanting certain posts to show up on the blog page, you can use a plugin like:

    https://wordpress.org/plugins/simply-exclude/

    in reply to: Breadcrumbs Problem #2025

    StartupWP
    Keymaster

    Just to double-check, are they sub-categories in the sense that you’ve set them up that way in the menu or have you actually set parent categories from your main WP admin menu under:

    Posts > Categories

    ?

    in reply to: Colors for footer, etc. #2023

    StartupWP
    Keymaster

    Try:

    body {
      margin: 1% 0 0;
    }
    #footer, #footer-sidebar {
      background: #333;
      color: #fff !important;
      padding: 0;
      text-shadow: none !important;
    }
    #footer a {
      color: #fff;
      text-shadow: none;
    }
    #copyright {
      background: #09f;
      text-shadow: none;
    }
    in reply to: Colors for footer, etc. #2021

    StartupWP
    Keymaster

    Link to your site please.

    in reply to: Deleting White Space #2020

    StartupWP
    Keymaster

    You’re welcome.

Viewing 25 posts - 151 through 175 (of 893 total)