New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 551 through 575 (of 893 total)
  • Author
    Posts
  • in reply to: Sidebar Widget Border #1081

    StartupWP
    Keymaster

    The ID class for that page is .page-id-492.

    So we can style like so:

    .page-id-492 #black-studio-tinymce-6 {
      border: 1px solid #CCCCCC;
      margin-top: 20px;
      padding: 0 15px 10px;
    }

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

    Is that about what you were thinking?

    in reply to: Customization (My Website) #1078

    StartupWP
    Keymaster

    IE Issues – What version of IE are we discussing?

    1. Wrap the comment count code with:

    <a href="<?php echo get_permalink(); ?>#respond"> ... </a>

    2. Try cursor:default instead.

    3. You would use something like:

    .unapproved {
      text-decoration: blink;
    }

    But, besides strongly recommending that you don’t use this style (as it annoys most), it’s been deprecated (out-dated) anyways.

    You might do something like the following instead:

    .unapproved {
      border: 5px solid #FF0000;
      color: #333333;
      display: block;
      font-family: arial,helvetica,sans-serif;
      font-style: italic;
      font-weight: normal;
      padding: 10px;
    }

    4. The Universal Slider checkbox is checked?

    in reply to: Customize help, please. #1076

    StartupWP
    Keymaster

    1. Looks like you figured that one out.

    2. Sure, you can use:

    .entry-content {
      text-align: left;
    }

    3. Sure, give this a try:

    table td {
      border: 1px solid #CCCCCC;
      padding: 10px;
    }

    StartupWP
    Keymaster

    Good idea, the logic for ordering social/contact and then branding/logo makes much more sense, so we will be fixing officially in the next update, however in the meantime, here’s a temporary style you can use:

    #social {
      max-width: 1000px;
      position: absolute;
      text-align: right;
      top: 10px;
      width: 100%;
    }

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

    Here’s how to apply the Google font to the menu:

    nav ul li a {
      font-family: 'open sans',helvetica,arial,verdana,sans-serif;
    }

    Of course, you can change open sans to whatever you need.


    StartupWP
    Keymaster

    Link please.

    in reply to: Can slider/twitter be limited to Home page #1069

    StartupWP
    Keymaster

    You’re always welcome. :)

    in reply to: Can slider/twitter be limited to Home page #1065

    StartupWP
    Keymaster

    Easy. Let’s start with:

    #slider, #twitter-feed{display:none}
    .home #slider, .home #twitter-feed{display:block}

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

    If you want to proceed with swapping out the Twitter widget for something else, this will require hacking the code via a child theme:

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

    If you’re comfortable with that, let us know once you’ve set it up and we can instruct further.

    in reply to: java hover menu issues #1063

    StartupWP
    Keymaster

    The code supplied above is the complete solution, just copy and paste:

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

    You could of course narrow it down to:

    header nav li ul {
      top: 27px;
    }

    We will be improving IDs, classes and the HTML5 structure more in future releases.

    in reply to: java hover menu issues #1061

    StartupWP
    Keymaster

    The menu is 100% CSS. Here’s what you need to adjust though:

    nav li ul {
      top: 27px;
    }
    in reply to: Front Page summary/ excerpt of post #1059

    StartupWP
    Keymaster

    Thanks for the recommend.

    in reply to: Customization (My Website) #1057

    StartupWP
    Keymaster

    1. You actually should only need this line to add to other templates than comments.php:

    <span class="comments-link"><?php comments_popup_link( __( 'Leave a Comment', 'startup' ), __( '1 Comment', 'startup' ), __( '% Comments', 'startup' ) ); ?></span>

    Not exactly sure where/how you want to add it though, you may want to experiment.

    2. Try:

    #comments-list, .comment-link {
      border-top: 2px solid #CCCCCC;
    }

    3. Try:

    .single-format-standard #content {
      width: 98%;
    }

    4. Update to:

    .comment-reply-link {
      color: #9A9A9A;
      font-family: arial,helvetica,sans-serif;
      font-size: 12px;
      margin-bottom: 20px;
      margin-top: 40px;
      text-decoration: none;
    }

    5. We’ll need a lot more specifics than that.

    in reply to: Make Front Page the most recent post #1056

    StartupWP
    Keymaster

    Let’s go back to:

    <?php /* Template Name: Home Post */ ?>
    <?php get_header(); ?>
    <div id="content">
    <?php query_posts( 'posts_per_page=1' ); ?>
    <?php while ( have_posts() ) : the_post() ?>
    <?php get_template_part('entry'); ?>
    <?php comments_template(); ?>
    <?php endwhile; ?>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    Now for that page under Pages in your WP admin, when editing, go top-right and click on “Screen Options” to make sure that the “Discussion” box is checked and then, that “Allow Comments” is checked below. If that’s a no go, we’ve unfortunately run out of ideas.

    in reply to: Box comments #1055

    StartupWP
    Keymaster

    Looks like you’re using JetPack comments. We’re not familiar with the plugin to be able to provide any useful advice. You may want to post here:

    http://wordpress.org/support/plugin/jetpack

    If you’re not dead-set on that plugin we recommend:

    https://disqus.com/
    http://wordpress.org/plugins/disqus-comment-system/

    in reply to: I broke something and don't know how #1054

    StartupWP
    Keymaster

    Yeah, simply pasting the URL as-is in plain text is the best way to go and it’ll automatically link.

    Good to hear the image issue resolved itself, since it was cleared once you restarted the browser, likely a cache issue.

    in reply to: Make Front Page the most recent post #1044

    StartupWP
    Keymaster

    Alright, let us do some more testing an get back to you.

    Thanks

    in reply to: I broke something and don't know how #1042

    StartupWP
    Keymaster

    What kind of customizations are you making, within the theme options or perhaps via child theming?

    Also, link to your site please.

    in reply to: Make Front Page the most recent post #1041

    StartupWP
    Keymaster

    Thank you for choosing StartupWP. :)

    Hopefully, it’s as simple as updating the template to:

    <?php /* Template Name: Home Post */ ?>
    <?php get_header(); ?>
    <div id="content">
    <?php query_posts( 'posts_per_page=1' ); ?>
    <?php while ( have_posts() ) : the_post() ?>
    <?php get_template_part('entry'); ?>
    <?php comments_template('', true); ?>
    <?php endwhile; ?>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>
    in reply to: Make Front Page the most recent post #1038

    StartupWP
    Keymaster

    This will require a custom page template. Please note that this is a special request and we’re not aware of any theme that has such capability by default, so you know, it’s not somehow a limitation of StartupPro, no theme has such capability out-of-the-box.

    1. If you don’t already have a child theme setup, set one up:

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

    2. Add a new custom page template to your child theme named home-post.php with the contents:

    <?php /* Template Name: Home Post */ ?>
    <?php get_header(); ?>
    <div id="content">
    <?php query_posts( 'posts_per_page=1' ); ?>
    <?php while ( have_posts() ) : the_post() ?>
    <?php get_template_part('entry'); ?>
    <?php comments_template(); ?>
    <?php endwhile; ?>
    </div>
    <?php get_sidebar(); ?>
    <?php get_footer(); ?>

    3. In your WP admin, create a new page named “Home Post” and assign it the custom template.

    4. Under Settings > Reading set “Home Post” as the static frontpage.

    This is untested, but should work.

    in reply to: How to Join #1037

    StartupWP
    Keymaster

    Quick update everyone, we’ve had to flush all the translations and start over.

    If you’d like a new invite to help out again, just let us know.

    in reply to: Translating browser tab text #1036

    StartupWP
    Keymaster

    You’re welcome to both simply start a new topic and share your language files.

    in reply to: New Receipt Link #1035

    StartupWP
    Keymaster

    Very good to hear. We were starting to worry. :)

    in reply to: Customization (My Website) #1031

    StartupWP
    Keymaster

    1. Use:

    #respond h3 {
      margin-bottom: 10px;
    }

    2. Use:

    .comment-form-author {
      margin: 10px 0 20px;
    }

    3. Looks like you’ve edited comments.php in order to add that extra text so you can use <br /> tags for carriage returns.

    4. Use:

    #commentform {
      font-family: arial;
    }

    5. Actually, just use:

    .required {
      color: #CC0000;
    }

    6. Try before and after that line.

    7. Use:

    .logged-in-as {
      display: none;
    }

    Have you been using Firebug?

    in reply to: Translating browser tab text #1030

    StartupWP
    Keymaster

    This is coming from WordPress core, this means you’ll actually need to set a different language in your entire install:

    http://codex.wordpress.org/WordPress_in_Your_Language

    If that doesn’t help, possibly you can take control of this with an SEO plugin like:

    http://wordpress.org/plugins/all-in-one-seo-pack/

    in reply to: New Receipt Link #1029

    StartupWP
    Keymaster

    Just sent to your Gmail.

    in reply to: New Receipt Link #1025

    StartupWP
    Keymaster

    It was sent to your @charter.net email.

Viewing 25 posts - 551 through 575 (of 893 total)