New Topic

StartupWP

Forum Replies Created

Viewing 25 posts - 401 through 425 (of 893 total)
  • Author
    Posts
  • in reply to: Responsive Menu Issue #1457

    StartupWP
    Keymaster

    You can test here http://quirktools.com/screenfly/ – The mobile menu activates at 320px.

    Also, if you provide the link to your website, we can have a look, make sure to clear any/all caches.

    in reply to: Responsive Menu Issue #1454

    StartupWP
    Keymaster

    Fixed in 2.0.3.

    Even if it’s not exactly what you had in mind, we’ll have more flexibility to customize it now.

    in reply to: Responsive Menu Issue #1452

    StartupWP
    Keymaster

    This will require an update to the parent theme, we’ll push the update tonight or tomorrow.

    Thank you.

    in reply to: Drop-Down Help #1448

    StartupWP
    Keymaster

    Great, happens to everyone.

    in reply to: Search Widget #1446

    StartupWP
    Keymaster

    Try:

    .page-template-templatestemplate-sidebar-left-right-php #content {
      width: 50%;
    }
    .page-template-templatestemplate-sidebar-left-right-php #lsidebar-sidebar, .page-template-templatestemplate-sidebar-left-right-php #rsidebar-sidebar {
      width: 21%;
    }
    .page-template-templatestemplate-sidebar-left-right-php #wrapper #s {
      border-right: 1px solid #ccc;
      float: none;
      margin: 10px 0;
      width: 100%;
    }

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

    in reply to: Custom Page Template #1444

    StartupWP
    Keymaster

    One possibility, make sure that you’re editing template-sidebar-left-right.php and not template-sidebar-left-right-post.php.

    Another possible issue, make sure now that you’re using StartupPro, that you’re child theme has the correct theme slug:

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

    in reply to: Search Widget #1443

    StartupWP
    Keymaster

    Link to this specific page please.

    in reply to: Custom Page Template #1440

    StartupWP
    Keymaster

    Do you want to remove titles from all pages, just that template, or from one specific page that happens to be setup with that template? Assuming the latter, can we get the link to that page?

    Also, before continuing your project, you may wish to know that the newest version of Startup is actually found here:

    http://wordpress.org/themes/startup

    Upgrading should be done with caution and is completely optional.

    in reply to: Website Looks Different In Handphone #1439

    StartupWP
    Keymaster

    Unfortunately, there simply seems to be too many additional, non-responsive elements added to the design.

    The design is only capable and powerful enough to maintain responsiveness to a reasonable extent. When you begin introducing design elements and 3rd party plugins/widgets that are not responsive it can become challenging.

    Here’s an example issue:

    nav {
      background: url("http://uendi.com/wp-content/uploads/2013/12/Nav-Menu-Bar-1.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0);
      border-radius: 0;
      height: 46px;
      margin-left: -176px;
      width: 1351px;
    }

    Here, you’ve introduced a hard-set width width: 1351px;.

    You essentially have a mixed fixed-width and responsive design. Before anything else, you might see if a plugin like http://wordpress.org/plugins/wptouch/ will suffice.

    in reply to: Website Looks Different In Handphone #1436

    StartupWP
    Keymaster

    Not all phones support Flash, what kind of phone is it? Also, what’s the website again?

    in reply to: Drop-Down Help #1435

    StartupWP
    Keymaster

    The problem is that you’ve set all those top menu items up with actually pages, under Appearance > Menus you want to setup custom links from “Links” there on the left.

    in reply to: Drop-Down Help #1432

    StartupWP
    Keymaster

    WordPress updated this, try simply leaving it blank.

    in reply to: space between container and first line of text #1431

    StartupWP
    Keymaster

    Try:

    .home h2 {
      margin-top: 10px;
    }

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

    in reply to: space between container and first line of text #1426

    StartupWP
    Keymaster

    Apologies, still not sure. Can you share a screenshot pinpointing exactly what you mean?

    If you’re not sure how to share a screen you can use something like http://imgur.com/.

    in reply to: Markup & CSS Validation #1424

    StartupWP
    Keymaster

    Try:

    <object width="540" height="30" data="http://uendi.com/wp-content/uploads/2013/12/Text.swf"><param name="wmode" value="transparent" bgcolor="#ffffff" /><embed width="540" height="30" type="application/x-shockwave-flash" src="http://uendi.com/wp-content/uploads/2013/12/Text.swf" wmode="transparent" bgcolor="#ffffff" /></object>

    Update both #ffffff spots if your background is a different color.

    in reply to: space between container and first line of text #1423

    StartupWP
    Keymaster

    Link to your site please so we can see.

    Thanks

    in reply to: Markup & CSS Validation #1419

    StartupWP
    Keymaster

    Don’t worry about any of the validation errors, almost no website 100% validates. It’s not really important that it does, nor is it likely that it can without somehow compromising your site for the worse.

    As far as the Flash issue in IE, can you please share the embed code you’re using for the .swf file?

    in reply to: Navigation bar #1418

    StartupWP
    Keymaster

    Go ahead and just add the following to your custom CSS:

    .entry-title {
      display: none;
    }

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

    in reply to: Navigation bar #1415

    StartupWP
    Keymaster

    Link to your About page please.

    in reply to: Content Widget Area #1413

    StartupWP
    Keymaster

    1. Make sure that your child theme is activated under Appearance > Themes.

    2. Can you share the contents of all files that are currently in your child theme? If it’s easier, you can use:

    http://pastebin.com/

    in reply to: Content Widget Area #1411

    StartupWP
    Keymaster

    Try placing the following at the very top of footer.php:

    <?php if ( is_home() ) { ?>
    <aside id="content-sidebar" role="complementary">
    <?php if ( is_active_sidebar( 'content-widget-area' ) ) : ?>
    <div id="csidebar" class="widget-area">
    <ul class="xoxo">
    <?php dynamic_sidebar( 'content-widget-area' ); ?>
    </ul>
    <div class="clear"></div>
    </div>
    <?php endif; ?>
    </aside>
    <?php } ?>
    in reply to: Navigation bar #1410

    StartupWP
    Keymaster

    Sounds like you’re referring to the breadcrumbs.

    From your WP admin:

    Appearance > StartupPro Options > Turn On/Off Features > Uncheck the Box for Breadcrumbs and Save

    in reply to: Content Widget Area #1407

    StartupWP
    Keymaster

    Have you setup a child theme?:

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

    That might be the best route.

    in reply to: southplainfieldsmallfry.com #1405

    StartupWP
    Keymaster

    Looks good.

    Adding just a subtle body background color (say #f6f6f6) can often make for better contrast for the content area.

    in reply to: Content Widget Area #1404

    StartupWP
    Keymaster

    Not yet, it’s not exactly on the back-burner and the idea hasn’t been abandoned either, it’s sort of in-between for now.

    However, it can be utilized. Simply drop the following wherever you’d like and you can then add widgets to it:

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

    In a way, this basically is how it’s supposed to be used, but we haven’t quite solidified how it should work completely.

    Thanks

Viewing 25 posts - 401 through 425 (of 893 total)