Forum Replies Created
- AuthorPosts
1. Adding CSS.
Log into your WP admin and from the main menu, go to:
Appearance > StartupPro Options > Scroll Down to Advanced Editing > Find the Box that Says Custom CSS Below It > Paste in:
#site-title a, #site-title h1 a, #site-title h1 { color: #000; font-size: 30px; font-weight: normal; margin: 0; padding: 0; text-shadow: none; }
Then click Save Options.
Let us know exactly how you’d like to change it and we’ll write it for you. What color, what font or font style, how big or small etc.
2. In the demo (https://startupwp.com/demo/), there’s only a logo image, nothing else. To add a logo or header image, go to:
Appearance > StartupPro Options > Image URLs > Logo Image URL > Click Select/Upload Image > When the Image is Selected Click Insert into Post > Save Options
To customize the site title header use:
#site-title a, #site-title h1 a, #site-title h1 { color: #000; font-size: 30px; font-weight: normal; margin: 0; padding: 0; text-shadow: none; }
Simply copy and paste:
https://startupwp.com/topic/customizing-your-theme/
Change it up however you like or make specific requests if you’d like us to write the code for you.
Generally, there’s not a good reason to have both a site title in the form of text AND a logo. Normally, you’d either just have the text there or if you wanted to have a logo, the text would appear within the logo graphic.
If you still want both, this will probably require more advanced customization than you might be comfortable with.
One creative solution we could utilize might be to have you upload a logo graphic and then we can use the Description (set under Settings > General) for the text you want to appear alongside the image.
Perhaps you might benefit from a plugin like:
Above:
#branding { margin-bottom: 30px; }
Below:
#header { padding-bottom: 30px; }
Can you be more specific? Which images exactly and how exactly are you looking to alter them?
1. Make sure you place widgets in the Main sidebar area, not the Right one. Right is used for the Left and Right sidebar template.
2. Buttons:
#content input[type="submit"], #content input[type="reset"], #container #searchsubmit, .button, #new-topic { background: #000; border: 0 none; box-shadow: none; color: #ccc; }
Form field borders:
#container input, #container textarea { border: 1px solid #666; }
3. You can adjust by adding:
body.custom-background { background-position: center 100px; }
Then change up
100px
as needed.StartupPro is not built with the WordPress customizer in mind, it has its own unique settings under:
Appearance > StartupPro Options
These plugins are bundled as a bonus and are completely optional. Not everyone will have a use for them, but offer some extra power if you need it.
We briefly cover them here https://startupwp.com/topic/using-included-premium-plugins/ and link to the complete documentation for each plugin.
Enjoy!
Sure, but before digging in you might find it a better way to go to simply grab the official widget from here:
https://twitter.com/settings/widgets
And paste it right into a Text widget under Appearance > Widgets.
And that way you’ll have more control and can move the widget around freely.
Unfortunately, they’re not sure what’s causing the issue either.
Not likely, but worth a shot, one last thing to try, possibly name the ID something else, perhaps
main
:<?php do_shortcode( '[nivoslider slug="main"]' ); ?>
Then make a slider under that ID and see if it makes any difference.
Other than that, and we wish we could solve them all, at a loss.
Great. :)
You said you contacted Dev7 already, but we’ll go ahead and put a ticket in with them to have them review this topic and see if they have any thoughts.
Thank you for your patience.
Apologies for being dense, is the problem now resolved or you need further help?
Try editing header.php and changes this line:
<?php if ( $options['slider'] ) { echo '<div id="slider">' . do_shortcode( '[nivoslider slug="slider"]' ) . '</div>'; } ?>
to just:
<?php do_shortcode( '[nivoslider slug="slider"]' ); ?>
Apologies, the issue is still too vague to know how to proceed in supporting your request. Please explain the issue in as much detail as you can, is everything up-to-date, are you getting any error messages, can you explain the step by step process to reproduce the error etc.?
Thank you.
Open up header.php and find the shortcode
[nivoslider slug="slider"]
. This is where you can play around with how this is implemented. Introducing a child theme (https://startupwp.com/topic/child-theming/) at this point if you haven’t already might be a good idea, but might also cause other hurtles.If this needs to be different on multiple sites in a multisite install, but having just the one
slider
ID is conflicting and you need to use multiple IDs dynamically, we’ll need to implement a PHPif
statement.Before we dig in, are we understanding the issue correctly and how many sites is this intended to support, a few, unlimited? Any other details that might help are appreciated.
Thank you.
:)
You’re welcome.
.attachment-post-thumbnail { margin-bottom: 20px; } .single-post .category-hanganyag .attachment-post-thumbnail { display: none; }
Link to an example post on your site please.
https://wordpress.org/plugins/dynamic-widgets/
or
https://wordpress.org/plugins/widget-logic/
Are great ways to accomplish this.
We may change up the breadcrumbs feature in the future, but for now you’ll want to use posts with categories to get the effect you’re after.
Posts and pages can be used interchangeably in different creative ways for the most part.
If not wanting certain posts to show up on the blog page, you can use a plugin like:
Just to double-check, are they sub-categories in the sense that you’ve set them up that way in the menu or have you actually set parent categories from your main WP admin menu under:
Posts > Categories
?
Try:
body { margin: 1% 0 0; } #footer, #footer-sidebar { background: #333; color: #fff !important; padding: 0; text-shadow: none !important; } #footer a { color: #fff; text-shadow: none; } #copyright { background: #09f; text-shadow: none; }
Link to your site please.
You’re welcome.
- AuthorPosts