Forum Replies Created
- AuthorPosts
We’ve answered your question in the form of creating a new document:
https://startupwp.com/topic/adjusting-the-content-sidebar-widths/
If you need follow up help let us know and please provide a link to your website.
Yes, now that you’re on pro you have access to the pro slider (found within your package):
https://startupwp.com/topic/setting-up-the-slider/
For the dropdowns, let’s get the link to your website and we’ll have a look.
Sorry that StartupPro wasn’t able to meet your needs. Refund issued.
For the description, give this a try:
#site-description { color: #777777; float: right; font-size: 112.5%; margin-left: 0; margin-top: -115px; }
That’s correct, you do not need to understand code at all if you do not wish to.
As shown in another topic of yours here:
https://startupwp.com/topic/center-text-in-box/
We’ve written the code for you, you need only copy and paste that code under Appearance > StartupPro Options > Custom CSS and Save, nothing more.
If you have a follow up question there or on other requests, please let us know.
Otherwise, please confirm that you still wish for a refund.
#logo { width: inherit; }
Sorry, you said you were using a child theme.
However, you can just use:
Smaller font size:
#content, .widget-container {
font-size: 80%;
}Centered box text with background color and other styles at your disposal:
.box {
background: none repeat scroll 0 0 #EEEEEE;
border: 4px double #CCCCCC;
box-shadow: 0 0 2px #CCCCCC;
float: left;
margin: 1%;
padding: 1%;
text-align: center;
}nav {
border-radius: 0 0 0 0;
margin-top: 0;
top: -64px;
}
#slider {
margin-top: 37px;
}Also, here’s an extra bit to fix the menu dropdown:
nav li ul {
top: 26px;
}We have the documentation:
https://startupwp.com/forum/documentation/
And specifically, if you’d like to learn CSS in order to style the look of your site, start here:
https://startupwp.com/topic/customizing-your-theme/
(which starts at the very beginning by first, explaining what CSS even is)So we already do what you’ve suggested, but more importantly as a customer, we don’t force you to have know or learn code, let alone understand the terminology. That’s all entirely unnecessary and will in no way hinder your ability to get help.
Explain whatever you like in your own words and we’ll very likely be able to understand what you mean. Rudimentary descriptions are fine:
“How do I make the area background at the top where the logo sits blue?”
“Here’s the link to my website, see where the Home link is, how to I make that a different color from the others?”
And we’ll explain exactly what to do in very simply terms.
Support is exactly as easy as you’d like it to be, as easy as anyone wants it to be and you can speak freely, we don’t care if you understand the tech lingo.
Ask away! :)
Unfortunately, those are very out-dated browsers on a very out-dated operating system. We simply use too much modern standards-compliant code (HTML5/CSS3) to be backwards compatible that far.
We can try and assist if you can provide more specific details.
Also, if you have Google Analytics installed you can see the percentage of your visitors that actually use IE.
Web design is like any other aspect of business, you have to weigh the pros and cons and see what’s best for the majority of your visitors. No website can look perfect across all browsers, devices, operating systems etc. The theme itself is coded validly and is standards-compliant. While IE9+ has become a lot more usable, older versions are very problematic and there’s simply nothing we can do about that.
#slider{display:none}
.home #slider{display:block}We can use that same trick for the logo:
#site-title{display:none}
.home #site-title{display:block}2. Once you have hosting and a domain in place you’ll need to do live testing before going public anyways, at that time we can have a look.
4. Should be pretty simple with a few steps:
– Setup a child theme: https://startupwp.com/topic/child-theming/
– Copy over entry.php to the child theme
– Change line 2:<?php if ( is_singular() ) {echo '<h1 class="entry-title">';} else {echo '<h2 class="entry-title">';} ?><a href="<?php the_permalink(); ?>" title="<?php printf( __('Read %s', 'startup'), the_title_attribute('echo=0') ); ?>" rel="bookmark"><?php the_title(); ?></a><?php if ( is_singular() ) {echo '</h1>';} else {echo '</h2>';} ?>
to:
<?php if ( is_singular() ) {echo '<h1 class="entry-title">';} else {echo '<h2 class="entry-title">';} ?><?php the_title(); ?><?php if ( is_singular() ) {echo '</h1>';} else {echo '</h2>';} ?>
The theme is definitely not intended for out-dated browser versions.
However, if you detail the specific issues we may be able to provide a solution.
2. Can we get the link to your website please.
4. This is a WordPress theme standard. If you’d like to setup a child theme to hack and change the code we can walk you through this. Or we can help you to style them differently if that’s the issue?
Very good to hear.
It’s good for CSS, but for more advanced customization (PHP/HTML), you do want to venture into child theming.
1. Use:
#site-title{display:none}
2. Use:
header {
padding-bottom: 0;
}
nav {
margin-top: 0;
}
#slider {
margin-bottom: 0;
}3. You’ll need to let us know the specifics, also you might want to checkout this plugin:
In your theme options, at the top, make sure that the box to turn on the slider is checked.
Then, double check that you’ve setup the new slider correctly:
No file hacking necessary or advised.
.entry-meta, .entry-footer{display:none}
For pro version see:
https://startupwp.com/topic/customizing-your-theme/
For free version see:
This has now been fixed.
Yes, there is a current issue with Sellwire at the moment. We’ll let you know as soon as we hear back.
Thanks
We wouldn’t recommend letting WP or a plugin resize your slides anyways, this can cause them to look stretched and pixelated.
Do you have a Photoshop or Illustrator? If not, a free alternative can be found here in order to prepare slides before uploading them:
The easiest way to accomplish this, is through a plugin like:
http://wordpress.org/extend/plugins/open-in-new-window-plugin/
- AuthorPosts