Forum Replies Created
- AuthorPosts
You’re welcome.
Aah, you’ve placed the CSS inside the media query
@media all and (max-width:999px)
.You’re welcome.
Assuming you mean to show on just the homepage and no where else, see this plugin:
http://wordpress.org/plugins/dynamic-widgets/
If you mean directly in the homepage content, see:
Where are you adding the CSS?
Please add again and make sure to clear all caches.
Actually, CSS will be what we want here, it’s just a matter of targeting the CSS more specifically.
.author h1.entry-title, .tag h1.entry-title{display:none}
You’re welcome.
You might try this plugin:
We might simply want to update the current grid with Masonry (http://masonry.desandro.com/).
We’ll take a look.
In the meantime, give a plugin like this one a try:
September 14, 2014 at 11:57 AM in reply to: Is there a way to make a sticky header in startup pro #1880You’re welcome.
See what you mean. Looks like you’re essentially looking for a 3 sidebar template so each column can be controlled separately.
You can suggest such a feature here:
https://startupwp.com/forum/suggestions/
And also, you might try working with boxes to see if you might manually be able to set something up:
You’re welcome.
Add:
.archive .post header { display: block; float: right; width: 67%; } .archive .post .entry-summary { clear: both; }
Update your .entry-summary img style to:
.archive .entry-summary img { float: left; height: 150px; margin-right: 10px; margin-top: -61px; width: 200px; }
And finally, add:
@media all and ( max-width: 999px ) { .archive .post header { width: 100%; } .archive .entry-summary img { float: none; margin-top: 0; } }
September 11, 2014 at 1:58 PM in reply to: Upgrading from Pro to new version of Pro in WordPress #1870Possibly you’re still just installing an older version?
Re-download from your download link and double-check that it really is the latest version.
September 10, 2014 at 2:46 PM in reply to: When viewing a single post page, make the title not a link but just text #1868Excellent.
September 10, 2014 at 2:29 PM in reply to: When viewing a single post page, make the title not a link but just text #1866Fixed another error in the above code if you’d like to give it a try.
Thank you.
Good to hear. You’re welcome.
Hi Dave,
We’re closing this topic as it’s a duplicate of the topic you created here in which we’ve already responded to:
https://startupwp.com/topic/error-problems-with-google/
Thank you.
September 9, 2014 at 9:08 PM in reply to: When viewing a single post page, make the title not a link but just text #1861Apologies, give this a try:
<?php if ( is_singular() ) { echo '<h1 class="entry-title">'; } else { echo '<h2 class="entry-title">'; } ?><?php if ( !is_singular() ) { echo '<a href="' . get_permalink() . '">'; } ?><?php the_title(); ?><?php if ( !is_singular() ) { echo '</a>'; } ?><?php if ( is_singular() ) { echo '</h1>'; } else { echo '</h2>'; } ?>
Let’s try the simplest solution:
#wrapper #menu #s { width: 150px; }
Please see this topic: https://startupwp.com/topic/hatom-feed/
September 9, 2014 at 1:51 PM in reply to: When viewing a single post page, make the title not a link but just text #1855Actually, that will disable the ability to reach the single post from archive, tag, cat and search pages, instead, use:
<?php if ( is_singular() ) {echo '<h1 class="entry-title">';} else {echo '<h2 class="entry-title">';} ?><?php if ( !is_singular() ) {echo '<a href="' . get_permalink() . '" title="<?php printf( __('Read %s', 'startup'), the_title_attribute('echo=0') ); ?>" rel="bookmark">';}<?php the_title(); ?><?php if ( !is_singular() ) {echo '</a>';}<?php if ( is_singular() ) {echo '</h1>';} else {echo '</h2>';} ?>
Thank you.
September 8, 2014 at 1:34 PM in reply to: When viewing a single post page, make the title not a link but just text #1850If it’s simply a matter of appearance, you can use:
.single .entry-title a { color: #777; cursor: text; font-size: 25px; text-decoration: none; }
https://startupwp.com/topic/customizing-your-theme/
Otherwise, we’ll need to dig into the code to hack the PHP.
We haven’t received the email. Please note that we do not provide email-based support anyways, but if you needed to send private details, you can use this form:
https://startupwp.com/contact/
For https://startupwp.com/topic/featured-images-in-category-view/, please follow up in that topic.
Thank you.
Can you be more specific, perhaps share a screenshot of the issue?
If you mean you wish to disable the responsive design altogether, see:
- AuthorPosts