Forum Replies Created
- AuthorPosts
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?
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?
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; }
August 28, 2013 at 6:16 PM in reply to: [Pro] Move custom contact container, change navigation menu font. #1075Good 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.August 26, 2013 at 8:04 PM in reply to: [Pro] Move custom contact container, change navigation menu font. #1070Link please.
You’re always welcome. :)
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.
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.
The menu is 100% CSS. Here’s what you need to adjust though:
nav li ul { top: 27px; }
Thanks for the recommend.
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.
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.
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/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.
Alright, let us do some more testing an get back to you.
Thanks
What kind of customizations are you making, within the theme options or perhaps via child theming?
Also, link to your site please.
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(); ?>
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.
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.
You’re welcome to both simply start a new topic and share your language files.
Very good to hear. We were starting to worry. :)
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?
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:
Just sent to your Gmail.
It was sent to your @charter.net email.
- AuthorPosts