New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 176 through 200 (of 893 total)
  • Author
    Posts
  • in reply to: Deleting White Space #2017

    StartupWP
    Keymaster

    1. Use:

    #header {
      padding-bottom: 0;
    }

    2. Use:

    #footer {
      padding: 2.5%;
    }
    in reply to: Vertical Lines Separating Columns #2015

    StartupWP
    Keymaster
    body #footer-sidebar .widget-container {
      border-right: 1px solid #777;
      margin-right: 2%;
      min-height: 180px;
      padding-right: 2%;
    }
    body #footer-sidebar .widget-container:last-child {
      border-right: 0 none;
    }
    in reply to: PHP update from 5.2 to 5.4 Crashed StartupPro #2014

    StartupWP
    Keymaster

    Please email us and provide your original purchase email so that we can locate your unique download link:

    https://startupwp.com/contact/

    Thank you.

    in reply to: Vertical Lines Separating Columns #2008

    StartupWP
    Keymaster

    Always the child. Or if you’re on Pro you can use the theme options.

    in reply to: Vertical Lines Separating Columns #2006

    StartupWP
    Keymaster
    #lsidebar-sidebar {
      border-right: 1px solid #ccc;
    }
    #rsidebar-sidebar {
      border-left: 1px solid #ccc;
    }
    #lsidebar-sidebar, #rsidebar-sidebar {
      margin: 4% 0.975%;
      padding: 0 0.975%;
    }
    in reply to: Removing footer Credits #2004

    StartupWP
    Keymaster

    Your confusion makes sense, this is because WordPress is so easy and automated out-of-the-box it’s a whole new way of looking at it when getting into customization.

    You clearly installed Startup automatically directly from the theme search under Appearance > Themes. There’s also a semi-manual and manual way to accomplish the same thing, but with more control.

    Semi-manual you could go directly to https://wordpress.org/themes/startup and download the zip, then upload and install under Appearance > Themes.

    The fully manual way (which is what we need to look at for child theming) is download the zip from https://wordpress.org/themes/startup, then unzip it so we just have the /startup/ folder and then manually upload it to /wp-content/themes/ via FTP (File Transfer Protocol).

    What host are you on? Different hosts have different requirements/instructions for connecting via FTP and they should be able to guide you on this.

    What we need to do now is get the /startup-child/ theme folder with your alterations uploaded to the /themes/ folder and then activated under Appearance > Themes.

    I realize this might feel a bit overwhelming at the moment, but you’ll be zipping along in no time. :)

    in reply to: Removing footer Credits #2001

    StartupWP
    Keymaster

    No problem, ask away! That’s what we’re here for. :)

    You can download a pre-made child theme example here:

    https://startupwp.com/downloads/startup-child.zip

    And learn more about child theming in general here:

    http://codex.wordpress.org/Child_Themes

    in reply to: How to change title color #1999

    StartupWP
    Keymaster
    #site-title a, #site-title h1 a, #site-title h1 {
      color: #E44424;
      font-size: 40px;
    }
    in reply to: Changing the size of title #1997

    StartupWP
    Keymaster

    Closing this topic and we’ll follow up just here for all title customization:

    https://startupwp.com/topic/how-to-change-title-color/

    in reply to: Changing Color in hovering on Menu #1996

    StartupWP
    Keymaster

    Please read all the solutions we’ve provided across all your topics and then follow up if you still need further help.

    Also, for future reference, you can bundle similar requests in the same topic, just be sure to itemize:

    1.

    2.

    3.

    Thank you.

    in reply to: Changing the size of title #1994

    StartupWP
    Keymaster
    #site-title a, #site-title h1 a, #site-title h1 {
      color: #fff;
      font-size: 40px;
      text-shadow: none;
    }

    Might need further adjustment.

    in reply to: Changing Color in hovering on Menu #1993

    StartupWP
    Keymaster
    #menu ul li a:hover {
      background: none #E44424;
    }
    in reply to: Centering Title & Slider #1991

    StartupWP
    Keymaster
    #branding {
      float: none;
      margin: 30px auto;
      max-width: 700px;
      text-align: center;
    }

    This answer and all others since our first answer to your first topic (https://startupwp.com/topic/removing-footer-credits/) will be with the assumption that these answers will be valid for use with a child theme you’ve setup.

    Please note that in the Pro version you can add custom CSS directly in the theme options for future reference.

    in reply to: Removing footer Credits #1989

    StartupWP
    Keymaster

    Update:

    <div id="copyright">
    <?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' ); ?>
    </div>

    to:

    <div id="copyright">
    <?php echo sprintf( __( '%1$s %2$s %3$s. All Rights Reserved.', 'startup' ), '&copy;', date( 'Y' ), esc_html( get_bloginfo( 'name' ) ) ); ?>
    </div>

    We’ve removed:

    echo sprintf( __( ' Built with %1$s and %2$s.', 'startup' ), '<a href="https://startupwp.com/">Startup WordPress Theme</a>', '<a href="http://wordpress.org/">WordPress</a>' );

    You’ll probably want to setup a child theme to make this customization:

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

    in reply to: Removing footer Credits #1985

    StartupWP
    Keymaster

    If you’re not comfortable digging into the code, you can upgrade to Pro and simply turn it off in the theme options.

    But, if you’d like to give it a shot with customizing the code we can.

    in reply to: Sidebars not showing on Blog Page #1982

    StartupWP
    Keymaster

    You’re welcome.

    in reply to: Sidebars not showing on Blog Page #1980

    StartupWP
    Keymaster

    Also add:

    .page-template-templatestemplate-sidebar-none-php #content, .post-template-templatestemplate-sidebar-none-post-php #content, .page-template-templatestemplate-login-php #content, .post-template-templatestemplate-login-post-php #content {
      padding: 4% !important;
    }

    For the new layout changes.

    1. Use:

    #menu {
      background-color: #800000;
    }
    #site-title a, #site-title h1 a, #site-title h1, h1, h2, h3, h4, h5, h6, h1 a, h2 a, h3 a, h4 a, h5 a, h6 a {
      color: #800000 !important;
    }

    2. Great, looks like you already figured out this one:

    .entry-content p {
      color: #000;
    }

    3. Bonus tip. Go to Settings > Permalinks > Change to “Post name” > Save Changes

    What this will do is change links like:

    http://www.theasccoder.com/?page_id=21

    to “pretty” links like so:

    http://www.theasccoder.com/disclaimer/

    in reply to: Sidebars not showing on Blog Page #1978

    StartupWP
    Keymaster

    Something must still be wrong with your child theme, we’ve just prepared and tested the following and it’s verified working:

    https://startupwp.com/downloads/support/startuppro-child%28sidebar-left-right-universal%29.zip

    Please give that a try. If it’s still not to your satisfaction it’s likely that it just needs some more custom CSS for your specific site to refine.

    Also, please remember to now use Left Sidebar Widget Area and Right Sidebar Widget Area respectively under Appearance > Widgets.

    You’re unlikely to find any other company that provides the amount of support we do elsewhere so we hope you’ll give it some more time, but if you’re still not satisfied, we’ll get you refunded.

    Thank you.

    in reply to: Sidebars not showing on Blog Page #1975

    StartupWP
    Keymaster

    Yes, see what’s wrong.

    You have a sub-folder within the child theme folder /startuppro-child/ that contains all the php templates.

    You need to simply drag them out of that folder so that everything appears alongside style.css, delete the sub-folder, delete out the currently live child theme and re-upload the new one.

    You could zip it and install under Appearance > Themes, but a better way would be via FTP (if you’re not sure how to FTP into your site, please check with your host). The reason being is because that way you can make edits locally and then upload the changes to your live site so that you always have a backup and also because it’s much easier to edit files locally using a more advanced text editor than editing through the default WordPress file editor.

    in reply to: Sidebars not showing on Blog Page #1974

    StartupWP
    Keymaster

    Let’s go ahead and switch over to email for a moment:

    https://startupwp.com/contact/

    Make sure to include this topic link (https://startupwp.com/topic/sidebars-not-showing-on-blog-page/) in your message.

    Thank you.

    in reply to: Sidebars not showing on Blog Page #1971

    StartupWP
    Keymaster

    The child theme has broken style:

    
    /*
    Theme Name: StartupPro Child
    Template: startuppro
    */
    
    @import url("../startuppro/style.css");body #content {<br>
      padding: 4% 0 ;<br>
    }

    Should be:

    /*
    Theme Name: StartupPro Child
    Template: startuppro
    */
    
    @import url("../startuppro/style.css");
    
    body #content {
      padding: 4% 0 !important;
    }
    in reply to: Sidebars not showing on Blog Page #1969

    StartupWP
    Keymaster

    1. Add the following to the bottom of your child theme’s stylesheet:

    body #content {
      padding: 4% 0 !important;
    }

    2. From the parent theme, copy over 404.php, archive.php, attachment.php, author.php, category.php, index.php, page.php, search.php, single.php, tag.php to your child theme.

    3. Open them all up in either TextWrangler (for Mac), Notepad++ (for Windows) or whatever your favorite editor is.

    4. Do a find and replace in all files for:

    <section id="content" role="main">

    with:

    <aside id="lsidebar-sidebar" role="complementary">
    <?php if ( is_active_sidebar( 'lsidebar-widget-area' ) ) : ?>
    <div id="lsidebar" class="widget-area">
    <ul class="xoxo">
    <?php dynamic_sidebar( 'lsidebar-widget-area' ); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </aside>
    <section id="content" role="main">

    5. Then do another find and replace in all files for:

    <?php get_sidebar(); ?>

    with:

    <aside id="rsidebar-sidebar" role="complementary">
    <?php if ( is_active_sidebar( 'rsidebar-widget-area' ) ) : ?>
    <div id="rsidebar" class="widget-area">
    <ul class="xoxo">
    <?php dynamic_sidebar( 'rsidebar-widget-area' ); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </aside>

    6. Save your child theme, upload and activate.

    in reply to: Left and Right Sidebars #1968

    StartupWP
    Keymaster

    You’re welcome.

    in reply to: Sidebars not showing on Blog Page #1964

    StartupWP
    Keymaster

    Page templates are a page-by-page option, not a universal design option.

    However, we can help you accomplish this utilizing a child theme:

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

    Let us know if you decide to setup a child theme and we’ll instruct further.

    in reply to: Left and Right Sidebars #1962

    StartupWP
    Keymaster

    Give this a try:

    #lsidebar-sidebar, #rsidebar-sidebar {
      float: left;
      margin: 4% 2%;
      width: 21%;
    }

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

Viewing 25 posts - 176 through 200 (of 893 total)