Jeff F.
Forum Replies Created
-
My pleasure, I just did a quick Google search on Parallax Pro Theme and took the first on the list. I hope that someone responds and helps you. Good luck.
Forum: Fixing WordPress
In reply to: Title in different position for pages and postsKevin
You can add css to the individual post id that can position the h1 tag. When you create a post, you can get the id number when in edit mode from the url and do something like:
#post-11 h1 {
margin-left: 40px;
}or change the width, text-alignment, etc.
Hope that helps.
Forum: Fixing WordPress
In reply to: Custom Menu IssueYou don’t have css to support the child list items. This is what you have now.
#navigation {
background: url(“images/navbar.jpg”) no-repeat scroll 0 0 rgba(0, 0, 0, 0);
color: #fff;
font-size: 14px;
margin: 0 auto;
width: 1000px;
}
#navigation ul {
height: 30px;
margin: 0;
padding: 0 0 0 75px;
}
#navigation ul li {
color: #fff;
display: inline;
float: left;
list-style-type: none;
padding: 0 15px;
}
#navigation ul li a, #navigation ul li a:link, #navigation ul li a:visited {
color: #a2a2a2;
}
#navigation ul li a:hover {
color: #ffffff;
}code like this below will put those will put this sub menu items into a straight horizontal line and that may not be the way you want it. There are numerous tutorials on the web that you can fine by searching “simple horizontal drop-down menu” and hopefully you’ll find the way you’d like to display it there.
/*sub menu*/
#navigation ul li ul {
display:none;width: 1000px;
}
#navigation li:hover ul {
position: absolute;
display: inline;
left: 20px;
width: 100%;
margin-top:20px;
padding: 0; }Forum: Fixing WordPress
In reply to: Social media buttons pushing down sliderDavid
In the header of the html, you have an <hgroup> that contains the site-title and site-description. These two have either too much width or too much margin in the css file, so they’re pushing the social icons down so they’re going into the slider.
The nav is also appearing after the slider so I don’t know if you accidentally moved it? I’m using firebug in Firefox and if you’ve not used it, it may help you inspect your code and then make changes that will work right in the browser and then you can put them into your actual code.
https://getfirebug.com/firstrun#Firebug%202.0.1
As far as the links are concerned, I see something like this a alt=”instagram” target=”_blank” href=”https://www.instagram.com/”
whereas a link should appear as
in order to direct someone to that page.
hope this helps.
Forum: Fixing WordPress
In reply to: After moving menu bar can not add new pages.It appears that your navbar has a width of 590px and looks like there’s a little room when I inspect it on Firefox, but it also has a left margin of 610px, so if the link you add is too long based on the font, it will kick it over. So you can change the margin-left in the CSS in order to add your additional menu item.
If you’re not familiar with firebug for Firefox it helps you see the code and make changes that will display in the browser and then you can make them in your actual code.
https://getfirebug.com/firstrun#Firebug%202.0.1
Hope that helps.
jeff
Forum: Fixing WordPress
In reply to: wp-ecommerce shipping to paypal issueJosh
Someone may notice your problem here and be able to offer help but since this has to do with a specific plugin you will probably have better luck with a response by posting at that individual support forum where the authors are more likely to check.
Is this the Parallax Pro Theme by Studio Press? If so please go to their site for support. The WooCommerce plugin also has support on that plugin page https://www.ads-software.com/plugins/woocommerce/
From the WordPress Codex
If you use a commercial theme or plugin and need support, please go to their official support channel. In order to be good stewards of the WordPress community, and encourage innovation and progress, we feel it’s important to direct people to those official locations. Doing this will provide the developer with the income they need to make WordPress awesome.
Forum volunteers are also not given access to commercial products, so they would not know why your commercial theme or plugin is not working properly. This is one other reason why volunteers forward you to the commercial product’s vendors. The vendors are responsible for supporting their commercial product.
Forum: Fixing WordPress
In reply to: After moving WordPress site address, only home page worksGlad you got it, and apologize for not being able to add more but two clients decided they didn’t want to pay so it was a challenging day. ??
Forum: Fixing WordPress
In reply to: Site rebuildThe links to outside sources or the ones within the site itself?
If the latter you can use a code editor to search and replace those links because I am assuming from your first post you have a new domain name?
Forum: Fixing WordPress
In reply to: After moving WordPress site address, only home page worksDid you move an existing site to WordPress? Do you have the permalink structure the right way to reflect the urls?
Forum: Fixing WordPress
In reply to: Site rebuildDid you delete all the files from the server? I have had luck a couple of times if I’ve acted quickly that there’s still a back up, so perhaps you can call the hosting company?
Forum: Fixing WordPress
In reply to: Woocommerce customer navigationWoo Commere has a Predictive Search https://www.ads-software.com/plugins/woocommerce-predictive-search/
but you should also post this on the plugin support page for woo commerce
Forum: Fixing WordPress
In reply to: Web site is not workingDid you change the url in the General Settings? If so, here’s a similar thread that lead to this:
https://codex.www.ads-software.com/Changing_The_Site_URL for info on editing the wp-config.php file.
You shouldn’t lose any thing you purchased regarding themes or plugins. If you’re familiar with ftp also be sure to download what you can to your computer before doing anything, the wp-content folder will have all the theme files, plugins, uploads etc. If you have to do a re-install it can save you a lot of time to just upload that folder to replace the new one.
Most hosting companies can provide tech support walking you through if you’re not real familiar, I used Godaddy, Blue Host and Hostgator for lots of clients and it’s 24/7 with real helpful folks.
Forum: Fixing WordPress
In reply to: Blog privacy from noindex,follow to noindex,nofollow?I don’t know how yours is outputting but perhaps this thread will help.
Forum: Your WordPress
In reply to: Looking for design thoughts on my music blogI think you already have the logo there. I would consider maybe a background. I’ve found a lot here. https://subtlepatterns.com
But then I think I’d make the logo a .png so the white didn’t surround it.
Also, just taking a quick look at a couple of blog posts I see a lot the albums, what about a gallery slider right up front showing your favorites?