Forum Replies Created
- AuthorPosts
Great to hear.
If you’re not attached to the Flare plugin, we actually recommend AddThis for more advanced sharing options:
Try disabling the Twitter feed in your theme options. Looks like there might be a conflict there.
There are actually subtle differences between the exact same browser version on different operating systems.
It should be as simple as bringing the menu font size down just a little bit in this case:
nav #site-nav li a { font-size: 18px; }
There are some tools that can assist in testing the wide variety of variables which one is not likely to have total access to the real thing for.
Mobile Testing – https://quirktools.com/screenfly/
Browser Testing – https://browsershots.org/
Also, it might be as simple as updating:
#content ul, .widget-container ul { list-style: disc outside none; }
to:
#content ul, .widget-container ul { list-style: disc inside none; }
Can we get the live link to your website?
If you’d like to use the official logos downloaded from:
Facebook: https://www.facebookbrand.com/
Twitter: https://twitter.com/logo
LinkedIn: https://developer.linkedin.com/documents/branding-guidelines
Google+: https://www.google.com/+/business/brand-guidelines.htmlYou’ll either need to:
1. If you’re using the free theme, setup a child theme and edit header.php:
https://startupwp.com/topic/child-theming/
OR
2. If you’re using the pro theme, setup the icons via your theme options as instructed under Appearance > StartupPro Options.
We can instruct further if needed.
Try:
h1, h2, h3, h4, h5, h6 {
line-height: 105%;
}https://startupwp.com/topic/customizing-your-theme/
Increase 105 if needed.
1. As answered above:
“Any decent web designer that you work with [should] be able to get the integration done without “losing” any parts.“
So to elaborate further, of course there’s a chance that a web designer with a low skill set or work ethic could cause you issues. But inherently, no, there isn’t anything about what you’re trying to do that instantly results in a compromise or loss of options in any way.
2. Through child theming (https://startupwp.com/topic/child-theming/) you can still utilize the options of Startup or StartupPro and essentially completely alter the look safely.
Although these are difficult questions to answer based on their subjective and speculative nature, we hope the information we’ve provided has been helpful.
.entry-content li:before, .comment-content li:before, #hsidebar .children li:before, #fsidebar .children li:before {
content: "";
}
#content ul, .widget-container ul {
list-style: disc outside none;
}You’re welcome.
Use:
#sidebar {
display: none;
}
#content {
width: 96%;
}There are many avenues to take for what you’re trying to accomplish.
http://codex.wordpress.org/Integrating_WordPress_with_Your_Website
Some people would just iframe jobstr.net to jobstr.com/blog, but we don’t recommend that as you lose basic SEO and user-friendliness.
Any decent web designer that you work with be able to get the integration done without “losing” any parts.
So, it’s not a matter of the possibilities, it’s a matter of finding the right pro. This can be a difficult task.
Post on http://craigslist.org/ and http://jobs.wordpress.net/ that you’re looking for a web designer/programmer with WordPress experience. Don’t pay for any premium job listings anywhere else, you won’t get any better results or different candidates. At this point, screen screen screen until you have narrowed down to someone you’re fairly confident with.
That’s the Twenty Twelve theme and likely doesn’t match Startup/StartupPro exactly.
Good to hear. :)
I understand your concern, but we’re not going to make statements like “This theme doesn’t work on IE8.” (IE8 being the latest IE available on Win XP, a 12 year old operating system mind you) because that isn’t inherently true, some people are using it still on IE8. We have the demo and we explain what the theme is, we’re not going to comprehensively exhaust what the theme isn’t (which may be isolated and subjective anyways), as this is neither practical or reasonable.
What is reasonable is a 60-day refund policy to be honored if you find for any reason, the theme is not suitable for your project. Which is where we’re at.
However, we’re now looking at your order and see that your purchase was made back in January, which means you’re not even eligible for a refund anyways. However, we’ve made the mistake of already guaranteeing you your refund here in this support topic. Since we’re an honorable and honest company we will be making an exception for you. Refund issued.
Thank You
As stated upfront, we design valid, standards-compliant themes with HTML5/CSS3.
We even pass Internet Explorer’s modern quality checks:
http://www.modern.ie/en-us/report#https%3A%2F%2Fstartupwp.com%2Fdemo%2F
Our themes are not built nor tested for out-dated web browsers.
We do understand the dilemma of some companies being stuck on archaic systems due to the costs of upgrading.
If StartupPro is not suitable for your specific project, no worries. Please just confirm and we’d be happy to issue a refund.
Give this a try and let us know how that looks:
td {
border: 1px solid #CCCCCC;
}If you’re on the pro version see:
https://startupwp.com/topic/customizing-your-theme/
If free, see:
You’re welcome.
We recommend this plugin:
Wonderful. You’re welcome.
Looks like this is a known bug with IE8.
Try removing:
#content p img {
max-height: 1024px;
max-width: 1024px;
}and adding:
img {
height: auto;
max-width: 100% !important;
width: auto;
}None of this makes any sense, very bizarre. What we recommend doing is contacting your host and request that they do a restoration of your account to the most recent backup date they have for you.
Okay, we’ve found the issue. Apparently this may be a WordPress bug where sometimes
is_home
just will not recognize the homepage correctly, likely after adjusting Settings > Reading.A workaround is:
<?php if (is_page('home')) { ?> WHATEVER YOU WANT HERE <?php } ?>
Make sure to update your original child theme and update via FTP.
Link please to example page/post. Also, a screenshot of the issue you’re seeing in IE8 if you can.
- AuthorPosts