NetComLogistics
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Add Border to Image@ j2001rad
Here is a simple css fix that might help with your issue.
- Go to your theme stylesheet and add the following code:
img.border { border:1px solid #777; } - Then go the page that contains the image that you would like to add a border around.
- Click on the image to access the “Image Details” (box should pop up).
- Click on “ADVANCED OPTIONS”.
- Type in “border” (no parentheses) where is says “Image CSS class”.
This should add a border. You can change the width or color of my example code to suit your tastes. You can now apply that same style to any image on your pages. If you want to add additional styles to that class, just add them under the class on your stylesheet, such as:
padding:5px;I hope this is of some assistance. Let me know if you need additional help.
Forum: Plugins
In reply to: [W3 Total Cache] Website runs blank white and I can't access admin page.Hello TheNorthWind,
I would suggest connecting to your website’s server via an FTP client or through your hosting company’s file manager. Then, you should be able to access your plugins folder and delete the W3 plugin to regain access to your site. The plugin folder location should be something like “root/wp-content/plugins”.
There are a number of things that could cause this problem. Depending on what theme and other plugins you are using, the W3 plugin might be incompatible with something. Once you have deleted the plugin from the folder, you should regain access to your website. Once back into the dashboard, I would suggest deactivating all other plugins, then reinstall the W3 plugin and make any desired changes. Once you have saved any changes, try reactivating any other plugins one at a time to see which one, if any, might be conflicting with the W3 plugin.
Forum: Themes and Templates
In reply to: [Iconic One] How to reduce height of headerHello Kishor G,
Changing the size of those elements typically involves altering the corresponding CSS code in the appropriate stylesheet. Are you familiar with CSS and do you have a link to the live website?
Forum: Themes and Templates
In reply to: [Brunelleschi] Overlay Text on Header Image How To & SEOUnfortunately, this looks like an issue with the theme programming. I have not used this theme as of yet, but I will download it possibly Monday and see if I can tinker with it and spot anything that would be causing the problem.
Forum: Fixing WordPress
In reply to: Restrict Contributors to only able to edit 1 pageHi julesthomas,
I apologize for the bad recommendation. It seems I missed the big bold disclaimer in the second paragraph “Role Scoper is no longer actively developed.” lol!
I believe Scriptrunner’s last question was a good one. This functionality could be implemented with some custom PHP script in the functions.php file, however I am still looking for a plugin that will address the issue easily.
Forum: Themes and Templates
In reply to: [Brunelleschi] Overlay Text on Header Image How To & SEOThanks!
Do you currently have the option to “include text with image” chosen in the theme options or do you have it set to only display text right now (I only see header text right now)? If you have it set to only display text, can you go ahead and choose “include text with image” option that you mentioned? I will take another look and see if I can spot anything.
Forum: Themes and Templates
In reply to: [Brunelleschi] Overlay Text on Header Image How To & SEOHello zerotomom,
Do you have a link to a live website that you are working on, or are you developing this locally on your machine?
Forum: Fixing WordPress
In reply to: SEO – What am I doing wrong?Hello laurelbeth,
To my knowledge, there are many different criteria that influence when and how often Google indexes new or existing websites. It can sometimes take several weeks before they are indexed.
I would suggest also posting your issue on the Google forum http://productforums.google.com/forum/#!forum/webmasters or http://productforums.google.com/forum/#!forum/analytics .
Forum: Fixing WordPress
In reply to: Troubleshooting RedirectHello m2markint,
You might try visiting http://detectmobilebrowsers.com/ and see if any of those scripts will be of any assistance.
Forum: Fixing WordPress
In reply to: Restrict Contributors to only able to edit 1 pageHello julesthomas,
I have not used this plugin before, but it appears that http://wordpress.org/plugins/role-scoper/ might offer the functionality that you are looking for.
Forum: Themes and Templates
In reply to: Featured images not sizing as desiredNo problem. You’re welcome.
Forum: Fixing WordPress
In reply to: wp installed, permissions set but mixed functionalityIt looks like files/folders with permissions 755 are only writeable by the file/folder owner, which in this case would be the server admin since he/she was the one to install WordPress. The permissions might need to be changed to 777, but that will allow anybody with server access to write to the file. Here is a good article discussing it:
http://www.dummies.com/how-to/content/how-to-change-file-permissions-using-filezilla-on-.html
Let me know if you continue to run into problems. I will be happy to help out if I can.
Forum: Themes and Templates
In reply to: Featured images not sizing as desiredIt appears that when you change the size of images within your theme, it will only apply to newly uploaded images and not images that have already been uploaded.
You can utilize some PHP in order to regenerate the image sizes for previously uploaded images, but I believe the quickest solution might be to apply a little CSS fix such as:
#preview-image .left .featured-image img { width: 100%; }Forum: Themes and Templates
In reply to: Featured images not sizing as desiredIt looks like it is still 700px wide in Firefox, as well. Did you edit and save the parameters in your functions.php file, or did you try changing the size of the featured image while on the “Edit Page” page in the dashboard?
Forum: Themes and Templates
In reply to: Featured images not sizing as desiredThank you for the link. On my end, when I view the index page, the image shows up as 250px x 200px (the image of the girl with sunglasses). When viewing the “About” page, the same image displays a size of 700px x 290px, which are the parameters set in your functions file. What browser are you viewing with that is displaying the incorrect sizes? I am currently viewing with Firefox.
- Go to your theme stylesheet and add the following code: