bretwp
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredYou’ll most likely need to get the assistance from cyberchimps support.
Have you already made changes to the CSS for your main Desktop view menu?
If you make changes to CSS, and do not include those changes in the different ‘media queries’ CSS, it can mess up the responsiveness, which is probably why we are seeing two menus in mobile view.
Forum: Fixing WordPress
In reply to: 2014 dropdown primary menuThe menu at the top of http://ducknbucklures.com looks correct at this time.
Where are you seeing the words “primary menu” on the front side of your website?
Forum: Fixing WordPress
In reply to: How to change the size of a buttonYou are correct that the button is an image. The background of largebutt is that image.
My recommendation would be to remove the code for this button completely and add a new image, or css button in it’s place.
Forum: Fixing WordPress
In reply to: Menu issues and assistance requiredAre you trying to replace the themes responsive desktop and mobile menu with something else?
When I view it on mobile, it shows two menus, the responsive menu and your regular menu.
Check out the plugin for Firefox called Firebug. It allows you to directly access CSS from the front end and figure out element ids and classes.
From there you can edit the CSS, change colors, etc.
Forum: Fixing WordPress
In reply to: Redirecting Domain to WordPress Install Folder. Help!This is a bit confusing.
Is this how you are set up?
DomainName1.com(root)
DomainName2.com(root/domainname2/)
WordPress Installation (root/domainname2/site)If so, the WordPress installation needs WordPress Address and Site Address to be http://domainname2.com/site/
Also, at Godaddy, you need to have Hosted Domains setup correctly. You do not need to redirect DomainName2.com to DomainName2.com/site/
Forum: Fixing WordPress
In reply to: How to make a category into a pageThe Electronics category page is going to show all sub category posts already.
You can use the Categories widget in your Sidebar to display a list of the parent and sub categories so people can choose those to refine the results.
Forum: Fixing WordPress
In reply to: Registration email is not being sentSometimes, depending on the host, you’ll need to use an SMTP server instead of the default PHP mail() function.
I’ve used this before under similar circumstances
Forum: Fixing WordPress
In reply to: 2012 Theme Footer Background colorFirst, make sure you are using a Child Theme to make your CSS edits.
I agree with Ross that you’ll want to look into using the browser plugin Firebug, using that you can directly see and test CSS in the browser.
The Twenty Twelve footer background can be changed like this, but you’ll most likely want to make some additional changes as the footer does not stretch 100% across the screen due to some padding.
footer[role=”contentinfo”] {
background: none repeat scroll 0 0 #eeeeee;
}Forum: Fixing WordPress
In reply to: Page displaying as one columnAre you sure your page(BLOG) is set up correctly to display the Posts?
http://codex.wordpress.org/Settings_Reading_Screen
Posts page should = BLOG
In your menu, are you adding the Category to the menu, or the Sub Page to the menu?
Forum: Fixing WordPress
In reply to: Moving from Wix to WordPressYou can not really move the design of the wix site over, but there does seem to be a way to move all of the page content over, though it seems almost as tedious as just copy/pasting it yourself.
Check out this plugin.
http://wordpress.org/support/plugin/cms2cms-wix-to-wp-migrator
Your site does not look incredibly complex, and as far as I can tell does not have a ton of additional functionality that you would need to recreate.
It may be cleanest to just manually move all of the content over yourself.
Forum: Themes and Templates
In reply to: Free WordPress Theme – JamboHey hey.
Just started messing around with Jambo today, I have to say so far it’s pretty nice.
I’ve found a few issues though.
First, the footer.php widgets are all set to Bottom1 by default. I changed the other two to Bottom2/Bottom3 and the widget areas work great.
Second, when displaying posts, it is not auto adding return characters.
For instance, a post that looks like this in the editor:
“Hello World,
My name is Bret.
I like WordPress”
Is displayed like this.
“Hello World, My name is Bret. I like WordPress”.
I have to manually enter break lines or other HTML to get the returns. Is there any way around this? I’ve never had to do this before with a theme.
Thanks!