Forum Replies Created
- AuthorPosts
- March 23, 2014 at 10:49 AM in reply to: Entry Content Pages In Firefox Different With Other Browers #1517
Try:
.page-template-templatestemplate-sidebar-left-php #content { width: 40%; }
March 22, 2014 at 8:47 AM in reply to: Entry Content Pages In Firefox Different With Other Browers #1514Looks like you’ve overridden those page’s content areas with the following style:
.page-id-143 #content { margin-right: -5px; }
Updating to the following fixed the problem:
.page-id-143 #content { float: left; margin-right: -5px; }
If you’re not intending on using sidebars, one place to start would be to make the content area full-width:
#content { width: 96%; } #sidebar { display: none; }
As far as columns, assuming you mean for posts listed in the blog, we should be able to help with this once you’ve started creating posts.
Can you be more specific about what’s not displaying correctly, how you expect it to display, on which device(s) you’re referring and finally, please share the link to your website.
Thank you.
No worries, when you need it, we can provide the code, you only need to paste it in. :)
1. More specific please.
2. More specific please.
3. Looks like you figured it out:
#container, #breadcrumbs, #twitter-feed { box-shadow: none; }
But, you’ll want to make sure to add new CSS to your theme options (https://startupwp.com/topic/customizing-your-theme/) or they’ll be overwritten next time you upgrade.
4. Use:
#social { margin-top: 10%; }
No problem, just let us know if/when you need some more help.
There are a number of options here.
1. Simply find free, open source icons online and then upload those to use in the custom icons section.
2. If you like the current icons, but just want the colors changed, you could download them and edit them in Photoshop (or a free alternative like http://www.gimp.org/) to colorize or color-overlay.
3. You could buy the source icons for editing (http://socialcons.com/).
4. There are different CSS techniques that could work like
filter
, though not yet supported in all major browsers.5. An icon font like Genericons (http://wordpress.org/plugins/genericond/) could probably be utilized.
Based on what you’d like to try we can assist further.
Doesn’t look like there are any plugins installed that should be interfering with RSS, it could possibly be a permalinks issue.
From your WP admin main menu go to Settings > Permalinks > Select “Post name” > Save (save anyways even if “Post name” is already selected).
404s are common, even if the pages do exist, sometimes other temporary issues can cause 404s, server load or maintenance issues going on for example while Google was crawling.
Specifically however, these URLs are RSS feeds, have you editing RSS options or added any plugins that might alter RSS feeds in any way?
You can see the pages work on the demo:
https://startupwp.com/demo/feed/
https://startupwp.com/demo/comments/feed/Not a problem, refund issued.
You bought the theme, decided it would not suit your needs and were immediately refunded all in the same day, that’s how easy, friendly and honorable our refund policy is.
As for no email support, that falls in line with our entire company concept. Keeping things very simple, straightforward and transparent. Keeping support open and public helps the whole community grow and learn together and is less fragmented.
Thank you for trying StartupPro.
There’s something beautiful about keeping it simple, some shops offer hundreds of themes that are really just fluff, the same theme over and over with different names and varying styles.
We are considering making StartupPro more of a framework and then selling child themes for it as quick-starts for different design/function directions, but we’ll see.
The problem is that the page already (and appropriately) inserts the h1 heading based on the page/post title, but then you’re manually inserting an additional heading:
<h1>Welcome to MSInterim – We can help you!</h1>
Would you be doing this because you don’t actually want “Company Presentation” to appear on page, but only be the slug (yoursite.com/company-presentation) of the page?
In that case, you can make “Welcome to MSInterim – We can help you!” the actual title when editing the page, and just below you’ll notice that you can manually edit the URL slug.
You’ll want to remove the following CSS:
.entry-title { display: none; }
In the theme itself, we’ve carefully considered headers and hierarchy to make sure it’s done just right and SEO-friendly.
Not seeing any specific h1 tag problems looking at your site, is there a specific page?
One page however (msinterimDOTse/impressum), we see an issue with multiple h3 tags, but no h1 tag or h2 tags before it that you’ll want to correct.
From what we’re reading this appears to be a hardware acceleration or pre-rendering issue with Chrome:
Not unusual at all, we highly respect your right to control your own information.
Let us know if we missed anything.
This appears to just be an error or perhaps just a cache issue, possibly fixed in a plugin update.
If after the next full StartupPro Package update you still get the nag, let us know. But, you should be good to go on using the plugin without limitation now.
Are your browsers completely up-to-date? This technique is not supported in older browsers.
@media all and (min-width: 1250px) { #wrapper { margin: 200px auto; transform: scale(1.25); } }
https://startupwp.com/topic/customizing-your-theme/
Depending on your setup, further adjustments may be needed.
You can find the license keys in sources/plugins/keys.txt.
Just replace
nav
with#menu
.Sent.
There’s a special pro slider plugin that needs to be setup specially for the pro version of the theme:
You just want all menus to show/be open by default at mobile size?
This isn’t something we’d want to implement universally in the theme, but for your specific request we could give the customization a try.
Let us know. Thanks
Can you see the new dropdowns working here?:
http://quirktools.com/screenfly/#u=https%3A//startupwp.com/demo/&w=320&h=480&a=33
1. Add:
#menu ul.menu li a { color: #000; text-shadow: none; }
Can be dropped right in your CSS box in your theme options, no child theme necessary.
2. Add:
#menu ul li a:hover { background: transparent; box-shadow: none; color: #fff; }
3. Add:
.entry-content li:before { content: ""; }
4. Could be a false error, let us know if you run into any limitations and we’ll investigate the issue further.
5. Add:
#content input[type="submit"], #content input[type="reset"], #container #searchsubmit, .button, #new-topic { background: none #FF1493; border: 1px solid #FF1493; box-shadow: none; color: #fff; }
- AuthorPosts