bobssc
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How do I change the menu font size on 2010?Look for this code in your https://www.connection-junction.com/wp-content/themes/twentyten/style.css and try changing font-size: 16px; to 14px or smaller BUT FIRST copy and paste your entire style.css into Notepad and save it in case you need to revert back.
#access { background: #000; display: block; float: left; margin: 0 auto; width: 940px; } #access .menu-header, div.menu { font-size: 16px; margin-left: 12px; width: 928px;
2: The color code #ffffff calls for white, not red. You can change any color designations in the CSS. It’s safer to use the full HEX code, e.g. #000000 = black, #CC0000 = deep red.
Refer to HTML color charts on Wikipedia https://en.wikipedia.org/wiki/Web_colors3: Sorry I have not worked with your theme so can’t give you precise info on how/where to change the font size without causing conflicts elsewhere that may also use the same font size.
The Photo Library uses <h3>
<h3 class="widget-title">Photo Library</h3>
Forum: Fixing WordPress
In reply to: Inserting An Image Within TextIn the image upload screen “Add an Image” – “Add media files from your computer” there is a section near the bottom titled “Alignment” with radio selection buttons for None, Left, Center, Right.
In your case select Center and then be sure to click on the Insert into Post button.
If you still have problems switch to the HTML view and do it this way assuming that you’ve used the WP image uploader.
<p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ante erat, iaculis </p> <img class="aligncenter size-full" title="Your Title" src="https://your-website-name.com/wp-content/uploads/2011/06/your-image-name.jpg" alt="Your Title" width="XXX" height="XXX" /> <p>Lorem ipsum dolor sit amet, consectetur adipiscing elit. Duis ante erat, iaculis </p>
It’s important sometimes to force WP to recognize paragraphs by using the <p>….</p> code.
If your image is on your server already you don’t need to use WP’s image uploader, I normally do not. Instead I insert the code manually to give me precise control.
<div style="text-align: center"><img src="https://your_website.com/your_images-subdirectory/image-filename.jpg" border="0" width="XXX" height="XXX" alt="Image Title" /></div>
Forum: Fixing WordPress
In reply to: Fatal Error: wp-includes/functions.phpI’m back finally and already deactivated all of the Plug ins which completely eliminated all problems. Now the issue is the customer uploads videos but in testing the Viper Video Plug In there are still issues. OF course they could get the EMBED code from Vimeo and use WP’s standard video loader but that may be technically “too difficult.”
I’m trying to decide whether or not to do a full manual re-install of WordPress 3.12 or take a gamble and click on the Automatic update to 3.2
Forum: Fixing WordPress
In reply to: Fatal Error: wp-includes/functions.phpWell I’ll be ………
That did work! Kinda
Now getting the following but the site is accessible!
Notice: Undefined variable: wpdb in /var/www/html/wp/wp-content/plugins/xml-sitemap-feed/XMLSitemapFeed.class.php on line 11
Notice: Trying to get property of non-object in /var/www/html/wp/wp-content/plugins/xml-sitemap-feed/XMLSitemapFeed.class.php on line 11
When I try to get the Dashboard I get:
W3 Total Cache Error: some files appear to be missing or out of place. Please re-install plugin or remove /var/www/html/wp/wp-content/db.php.
Renamed the file as well as object-cache.php and then I was able to access the dashboard. Warnings for XML Sitemap & Share This plug-in which I deactivated.
Now just one final warning
Notice: has_cap was called with an argument that is deprecated since version 2.0! Usage of user levels by plugins and themes is deprecated. Use roles and capabilities instead. in /var/www/html/wp/wp-includes/functions.php on line 3387
Forum: Fixing WordPress
In reply to: Fatal Error: wp-includes/functions.phpThanks, access by FTP is no problem, do you mean simply renaming the “w3-total-cache” plug in?
I kind of doubt that will work but I’ll give it a try and report back. Thanks again.