Forum Replies Created
- AuthorPosts
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.
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.
This will require an update to the parent theme, we’ll push the update tonight or tomorrow.
Thank you.
Great, happens to everyone.
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%; }
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:
Link to this specific page please.
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.
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.
Not all phones support Flash, what kind of phone is it? Also, what’s the website again?
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.
WordPress updated this, try simply leaving it blank.
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/.
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.Link to your site please so we can see.
Thanks
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?
Go ahead and just add the following to your custom CSS:
.entry-title { display: none; }
Link to your About page please.
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:
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 } ?>
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
Have you setup a child theme?:
https://startupwp.com/topic/child-theming/
That might be the best route.
Looks good.
Adding just a subtle body background color (say
#f6f6f6
) can often make for better contrast for the content area.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
- AuthorPosts