Don Betts
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Adding a menu to a page other than homepageRegister the menu in the functions.php. http://codex.wordpress.org/Navigation_Menus#Register_Menus
Create a custom page template for Industry Affiliations.
http://codex.wordpress.org/Pages#Creating_Your_Own_Page_TemplatesPlace the code for the menu in that template where you want the menu to display.
http://codex.wordpress.org/Navigation_Menus#Display_Menus_on_ThemeWhen in doubt, check the codex first.
Forum: Fixing WordPress
In reply to: Localhost asks for FTP credentialsMy localhost on mac does the same thing – what happens when you put in the credentials (should be the same as your username and password for your user account on your computer)
See also: http://wordpress.stackexchange.com/questions/57166/ftp-credentials-on-localhost
Forum: Fixing WordPress
In reply to: Add target=_blank to a link on a custom menuhttp://wordpress.org/support/topic/add-target-element-to-menu-editor?replies=20
7th post down. Always be sure to search the forums. Thanks.
Forum: Fixing WordPress
In reply to: Menu Button On PhoneTry deactivating any plugins you have installed.
If that doesn’t work, I wonder if somehow your twenty twelve has become corrupt. Try changing to twenty eleven theme, deleting twenty twelve, then reinstall twenty twelve and reactivate.Forum: Fixing WordPress
In reply to: Menu Button On PhoneThe small menu for small screens is a responsive feature of twenty twelve, so it’s doing what it’s supposed to do, but it is supposed to expand to a menu when pressed or clicked. Can you give a link to your site so others on the forum can test it?
Forum: Fixing WordPress
In reply to: Need to move logo right a little bitYou’re welcome
Forum: Fixing WordPress
In reply to: adding a comments form to my posts & pagesTry looking in Settings -> Discussion and check to see if “Users must be registered and logged in to comment” is checked – if it is, uncheck it.
Forum: Fixing WordPress
In reply to: Need to move logo right a little bitIn your style-default.css file find the line that says (line 243 if you’re using a text editor):
#Logo { float: left; margin: -60px 0 24px -3px; }and change the -3px value to whatever number you want (20px will bring it in line with the left edge of the slider beneath it).
Good luck!
Forum: Fixing WordPress
In reply to: wrong number of excerptsForum: Themes and Templates
In reply to: Remove categories list.Looks like you have a secondary menu set up. Try going to Appearances -> Menus in the admin panel. There should be tabs on the right with the names of the menus on your site. Select “Secondary” and delete it. Hope that works.
Forum: Fixing WordPress
In reply to: How to Change Theme's Font Color for Posts?Tell you what, don’t use my name, but give a shout out to wordpress.org forums and the WordPress community.
Forum: Fixing WordPress
In reply to: How to change position of widget?You’re welcome.
Forum: Fixing WordPress
In reply to: How to Change Theme's Font Color for Posts?The line numbers appear if you are using a text editor program (I use Coda) and access your WordPress files through FTP to your webhost. If you are just using the editor in the WordPress admin (Appearance -> Editor) the numbers don’t appear. There is this plugin that looks like it will mimic a text editor in the WordPress editor, but I’ve never used it so I can’t say if it’s good or not
Forum: Fixing WordPress
In reply to: How to change position of widget?In your custom-styles.css file find the code (on line 6):
#wrapper { margin: 280px auto; }change 280px to whatever you want – maybe start with 150px and see how that looks to you.
Forum: Fixing WordPress
In reply to: How to Change Theme's Font Color for Posts?In your style.css file find this (it’s on line 802):
h1.entry-title a:link, h1.entry-title a:visited, h1.entry-title a:hover, h1.entry-title a:active { color: #A8D3DD; font-weight: normal; margin: 0 0 -5px 0; }change
color: #A8D3DD;
to whatever you want. There’s lots of online colour pickers that will give you the hexidecimal number but here’s a simple one http://www.colorpicker.com/Good luck!