Forum Replies Created
- AuthorPosts
Start with:
#wrapper { min-width: 1000px; }
https://startupwp.com/topic/customizing-your-theme/
And if you need further help, please share a link to your website where there’s an example of the table issue.
Thank you.
Please bookmark https://startupwp.com/user/uendi/ for future reference so that you can find all your previous topics, replies, subscriptions etc.
By simply adding this line
min-width: 1000px;
should actually solve most of the problems you’re having here:#menu-my-footer-menu { background: url("http://uendi.com/wp-content/uploads/2014/05/FooterMenu.png") no-repeat scroll 0 0 rgba(0, 0, 0, 0); border-top: 1px solid #816100; clear: both; display: block; height: 350px; left: 0; margin-top: 90px; position: absolute; text-align: center; width: 100%; min-width: 1000px; }
Looks like you added inline styles:
<span style="font-family: arial, helvetica, sans-serif; font-size: 14px; font-style: italic; color: #FFFFFF; position: relative; bottom: 174px; left: 115px;"> Keep updated with our latest products and offers from</span>
So, however/wherever you’ve embed these you would need to go in and adjust the
left
style.It’s not a pretty solution, but:
@media all and ( max-width: 1000px ) { #menu-my-footer-menu .menu-item-5650 a { left: 30px; position: absolute; top: 76px; } }
This line is regarding automatic updates which require online access.
We recommend testing online in a live (but hidden from public view of course) test install anyways for the best accuracy.
Local testing usually cannot simulate exact server configuration and testing on your actually hosting account helps to avoid any surprises.
You’re welcome.
Add the following to your Custom CSS area:
body { background: url("http://401regimenclassic.com/wp-content/uploads/2014/05/backshield.gif") repeat scroll 0 0 rgba(0, 0, 0, 0); }
You’ll also want to update the social icons and copyright line so that they are more visible with:
#social a img { background: #fff; opacity: 1; } #copyright, #copyright a { color: #fff; font-size: 16px; text-shadow: 1px 1px 1px #000; }
Can we get the link to both, your website, and the background image?
From all reports, the license nag appears to simply be a bug that doesn’t actually interfere with your use of the plugin.
Refund issued, you’re welcome.
Hopefully you’ll give us another try for one of your projects in the future.
Thank you.
@mafiosa5 – No worries, if you are not interested in our support to help you troubleshoot what the problem is (after you’ve checked the instructions: https://startupwp.com/topic/installing-your-theme/), please cancel the PayPal dispute you’ve started and we’ll get you a proper refund right away.
Thank you.
You should only be attempting to install startuppro.zip that is contained within the main package zip that you initially downloaded.
Please see: https://startupwp.com/topic/installing-your-theme/
Simply double-click on it, your computer will 99% likely be equipped to take it from there.
Yeah, don’t always rely on the preview as it’ll only attempt to give an indication, but usually isn’t 100% accurate. It’s all apart of using different tools, finding their strengths and weaknesses and utilizing them best to get the job done.
Looking at http://www.goutresolve.com/cart/ – Is “Cart” actually a page listed under Pages in your WP admin?
If so, you can edit that page and change the Page Template to No Sidebar. Repeat for any other pages you want to make the change to.
You’re welcome.
You’re welcome.
There are a number of ways to customize, answered here:
Not exactly sure what to advise here. However you got the initial newsletter widget to work, can you appropriate to the footer area?
Perhaps you may want to follow up in that support topic where you first found the code.
Can you add it back to the footer so we might be able to see and test the issue?
Is the newsletter feature a plugin or manually coded in?
Have you looked at trying to place the widget in the Footer Widget area under Appearance > Widgets or to paste the newsletter code into a Text widget there?
While perhaps not ideal, a quick solution for the footer area that’s covering up your footer links is to add
height: 0;
to#copyright
.Although you posted in a topic that sounds similar to the issue you’re having, it actually is not. In fact, no one else has reported the problem you’re reporting. The reason this is important is that it narrows down the troubleshooting to there most likely being a specific issue in your setup and not an issue in WP, the theme or the plugin, although that is still possible.
Next, we’ll want to check that everything is up-to-date, WordPress, theme and plugins?
You’ll also want to just double-check the instructions again:
https://startupwp.com/topic/setting-up-the-slider/
If it’s still a no go, at that point, it’ll probably be easiest to get your login info privately by email and then investigate directly. If necessary, do we have permission to request info and access by email?
Thank you.
@theoldscientist – Often, this means a jQuery or plugin conflict.
Also, are you using a caching plugin like W3 Total Cache or WP Super Cache and have you tried deactivating all plugins except for Nivo?
You’re welcome.
Say you wanted to block access to http://yourwebsite.com/your-page-slug-here/ you could try:
RewriteRule ^your-page-slug-here$ - [F]
- AuthorPosts