Forum Replies Created
- AuthorPosts
1. Under Appearance > Widgets, remove/delete that widget from the Footer Sidebar.
2. Update:
.entry-content p { background: none repeat scroll 0 0 #cab1e2; border-radius: 5px; font-family: Aclonica; font-size: 16px; padding: 2%; }
to:
.entry-content p { background: none repeat scroll 0 0 #cab1e2; border-radius: 5px; font-family: Aclonica; font-size: 16px; margin: 0; padding: 2%; }
3. Update:
.purple-box { background: #cab1e2; padding: 2%; }
to:
.purple-box { background: #cab1e2; border-radius: 10px; font-family: verdana,sans-serif; padding: 2%; }
4. Use an empty Text widget from under Appearance > Widgets.
5.
#cab1e2
is a hexadecimal color code. You can select others easily with this tool:http://www.w3schools.com/tags/ref_colorpicker.asp
6. The extra one is likely your child theme. We recommend including the word “Child” in this theme’s name to avoid confusion.
You’re welcome.
Happy you’ve found a compromise, but sorry we couldn’t solve why you’re having issues with the latest version.
Thanks
Very strange. Unfortunately, this might remain a mystery. We haven’t received any similar reports so it’s likely an isolated issue. At this point all signs seem to point to a possible conflict with the host environment. What are you currently using?
We recommend the same host wordpress.org does:
We’ve investigated and it’s proving to be very difficult to narrow what’s going on and why.
Here are a few follow up questions:
1. Have you edited the theme code in any way, like header.php?
2. Did you previously have other slider plugins installed?
3. Did you ever use a cache plugin at any point?
As you can see in the demo, the slider is still working fine:
The only other thing we could advise to try is to try deactivating all other plugins, but Nivo in case there’s a conflict there.
Couldn’t find any obvious issues, we’ll need to get in and take a look.
Please email us the admin login details:
https://startupwp.com/contact/
Thank you.
Have you followed these instructions?:
https://startupwp.com/topic/setting-up-the-slider/
If so, please share the link to your site.
Thank you.
The parent stylesheet should always remain untouched. That’s correct, you need to move your added customizations over from the parent to the child stylesheet starting on this line as indicated above:
START ADDITIONAL CSS BY REPLACING THIS LINE
2. Yes, that’s correct. Once the parent theme is called correctly everything should function as normal.
1. The problem is that you copied over the entire main stylesheet as the child theme stylesheet. style.css and functions.php are the exception to the rule, you want to do this for all files, but them as these files don’t replace the parent file, they add to it.
So, in the case for the child theme stylesheet it need only contain:
/* Theme Name: StartupPro Child Template: startuppro */ @import url("../startuppro/style.css"); START ADDITIONAL CSS BY REPLACING THIS LINE
2. Can you share a link to the exact page you’re referring to?
No need to hack the PHP files.
Just use the following CSS:
#sidebar .widget-container li { list-style: outside none disc; margin: 10px; }
1. Go ahead and email us your login details so that we can get in and take a look:
https://startupwp.com/contact/
2. Depends on what kind of pages you mean. Are you referring to WordPress Pages (https://support.wordpress.com/post-vs-page/) or web pages in general?
3. Install https://wordpress.org/plugins/all-in-one-seo-pack/, it’ll automate most of this for you.
4. Referring back to 3 optimizing your SEO will allow you to take some control over your appearance in search engines. Joining https://www.google.com/webmasters/ will help additionally, but ultimately Google will decide the best appearance for your pages in its index. Please note that when you make updates Google will not automatically show the changes. It can take about a week.
You’re very welcome. :)
With iframes.
We’ll need more specifics on exactly what you’re trying to do in order to write an example for you.
It appears all CSS provided is added and working.
Whenever adding new CSS be sure to clear your browser cache and WordPress cache if you’ve installed a caching plugin (you’ll know if you have).
Ah, yes, in that case try adding a plugin like:
https://wordpress.org/plugins/simple-custom-css/
And you can then easily add the CSS.
1. Use:
#menu .sub-menu li a, #menu .children li a { background: #E44424; }
2. Under Appearance > Widgets drag a Text widget to the sidebar and paste in the PayPal code.
3-4. Try:
.metaslider { margin: 30px auto !important; }
5. You’re welcome. :)
Please see https://startupwp.com/topic/child-theming/.
1. Looks like you were able to solve the description style.
2. Great.
3. In that case let’s do this:
a. Add this CSS:
.purple-box { background: #cab1e2; padding: 2%; }
b. Then in the page content you’ll need to switch the editor to HTML/Text mode and wrap the 3 areas with the following HTML:
<div class="purple-box"> </div>
4. The same place you added that widget under Appearance > Widgets, you can add more widgets there.
5. This happens when you create multiple drafts. For instance, you likely created multiple “Home” pages and some are probably in the trash. Make sure to delete them all out except for the live “Home” page. Then edit that page and you’ll see the field where you can edit the slug (is what it’s called) and remove
-2
and save.You’re welcome.
It is easier and recommended to just use the theme options up until the point where it’s required to use a child theme based on requests. For #1, it’ll be necessary to use a child theme for this part:
“…I’d like the phone number, email and facebook and twitter icons to be a little larger and below the ‘All Dogs…’ text.”
If that bit is not extremely important and can be compromised you can avoid needing a child theme.
3. Is this what you had in mind?:
.entry-content p { background: #cab1e2; border-radius: 5px; font-family: Aclonica; font-size: 16px; padding: 2%; }
Looking at http://www.blessedfurever.com/?page_id=80, there are two things we can do here to fill out the page:
a. Edit the page and change the page template the no sidebar template.
or
b. Under Appearance > Widgets add some widgets to the sidebar area.
Bonus: Go to Settings > Reading and select “Post name” and save. http://www.blessedfurever.com/?page_id=80 will now appear much more nicely as http://www.blessedfurever.com/about-us/.
1. Use:
#logo { float: left; width: 40%; } #site-description { clear: none; color: #fff; float: left; font-size: 25px; width: 60%; } #social .details, #social .details a { color: #fff; font-size: 18px; }
You’ll also need to copy over your header.php file to your child theme if you haven’t already and find:
<?php if ( $options['social'] ) { echo '<div id="social">'; if ( $options['googleurl']!="" ) echo '<a href="' . esc_url( $options['googleurl'] ) . '" id="social-google"><img src="' . get_template_directory_uri() . '/images/social/google.png" alt="Google+" /></a>'; if ( $options['linkedinurl']!="" ) echo '<a href="' . esc_url( $options['linkedinurl'] ) . '" id="social-linkedin"><img src="' . get_template_directory_uri() . '/images/social/linkedin.png" alt="LinkedIn" /></a>'; if ( $options['twitterurl']!="" ) echo '<a href="' . esc_url( $options['twitterurl'] ) . '" id="social-twitter"><img src="' . get_template_directory_uri() . '/images/social/twitter.png" alt="Twitter" /></a>'; if ( $options['facebookurl']!="" ) echo '<a href="' . esc_url( $options['facebookurl'] ) . '" id="social-facebook"><img src="' . get_template_directory_uri() . '/images/social/facebook.png" alt="Facebook" /></a>'; echo '' . do_shortcode( stripslashes( wp_kses_post( $options['custicons'] ) ) ) . ''; echo '</div>'; } ?>
and move it just below:
<?php if ( $options['description'] ) { echo '<div id="site-description">' . esc_html( get_bloginfo( 'description' ) ) . '</div>'; } ?>
2. Great to hear.
3. Use:
#container { border: 2px solid #9400d3; box-shadow: 0 0 10px #777; box-sizing: border-box; }
4. Use:
#copyright { color: #fff; font-size: 16px; padding: 2%; text-align: center; text-shadow: none; } #footer-sidebar { background: #9400d3; border-radius: 10px; padding: 2%; } #footer-sidebar * { color: #fff !important; }
No need to feel stupid, it’s really no different than learning a new language. Daunting it may be at first sure, but you seem to be catching on quick and the more you see examples and fuss around with styling your site the more things will begin to actually make sense as apposed to simply remembering that if you do X, Y will happen.
1. For the header/logo/title. What might be a better solution is to just upload the logo through your StartupPro Options and add “Dogs are Gifts; Well Behaved Dogs are Blessings” for the description under Settings > General. From here it would be easier to then style things to look more the way you want.
2. For hiding the reply box see https://startupwp.com/topic/removing-comments-from-pages-and-posts/.
3. Here’s how we can break up the menu tabs:
#menu { background-color: transparent; background-image: none; } #menu ul li a { background: #000; border-right: 0 none; margin-right: 5px; }
1. Use:
body { margin: 0; } #menu { margin-top: 0; }
2. Use:
.page h1.entry-title { display: none; }
3. These are only seen by you, the admin and are for your convenience. Would you still like to hide them?
If you’re not familiar with adding CSS, please see:
Let’s use divs instead like so:
<div class="product-boxes">[product id="1"]</div> <div class="product-boxes">[product id="2"]</div> <div class="product-boxes">[product id="3"]</div>
Then add this CSS:
.product-boxes{box-sizing:border-box;width:33.3%;padding:10px;float:left} @media all and (max-width:480px){.product-boxes{width:100%}}
That should be close, but a few more adjustments will probably be needed so update us after you’ve updated the code.
Like most validation tools, they’re only accurate and useful to a point. Visually, a website might be perfectly responsive, but to the Google crawler it might be looking for signals that generally imply mobile support that aren’t being used.
Trust your own eyes and judgments over an automated tool when it comes to these kinds of issues. When the real mobile devices aren’t handy, tools like this are fairly good:
http://quirktools.com/screenfly/
This should fix your header:
#logo { width: 100% !important; }
As for your table, the way the table is assembled it doesn’t look like it’ll be able to be responsive. Since this is a bit off-topic, go ahead and start a new topic and we’ll work on a better solution for displaying your products.
Thank you.
You’re welcome.
If they’re published and have 0 or only a few views, depending on how much traffic your site has so far that may well be accurate.
Since you have Google Analytics you’ll be able to track the flow of traffic through your site much more accurately.
- AuthorPosts