graphical_force
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: CSS Sprites ProblemCould you post a link to your site to show where this is happening?
Forum: Fixing WordPress
In reply to: Search only working on home pageTry and disable all plugins and activate default theme and see if it is fixed. If it is, then activate the theme then check. Then activate each plugin one at a time until the issue happens. This is basic troubleshooting that should help you find where the issue lies.
If it is the theme you will have to get support from the author since premium themes are not supported on this forum.
Forum: Fixing WordPress
In reply to: How to change wordpress background for themeYou are actually using an image for the background which is being controlled by the css.
You can see the instructions on how to do it here: http://www.themehorse.com/theme-instruction/attitude/
Forum: Fixing WordPress
In reply to: Pages not loadingDo you have a link to your site?
Forum: Fixing WordPress
In reply to: Adding an imaged mapped headerUnfortunately, you will have to get support from the theme author since premium themes are not supported on this forum.
Forum: Fixing WordPress
In reply to: Post Featured images and other thumbnails wont show upDo you have this issue when you use the default theme? Unfortunately, you are using a premium theme which is not supported on this forum. You will have to get support from the theme author.
Forum: Fixing WordPress
In reply to: disappearing buttonsUnfortunately, this is a premium theme from WooThemes. Premium themes are not supported here so you will have to get support from Woothemes.
Forum: Fixing WordPress
In reply to: Post Featured images and other thumbnails wont show upMake sure you’ve done everything that you need to. http://codex.ww.wp.xz.cn/Moving_WordPress
Forum: Fixing WordPress
In reply to: wp-content/plugins directoryDo you have a link to your site?
Forum: Fixing WordPress
In reply to: wp-content/plugins directoryOk, then why not upload it to the correct folder which is wp-content/plugins?
Forum: Fixing WordPress
In reply to: do_shortcode HELPWhat happens when you run that code? Do you get an error?
Forum: Fixing WordPress
In reply to: disappearing buttonsAre you saying that you are seeing this in the admin section of the site or is this on the front end? Do you still have this issue when using the default theme?
Forum: Fixing WordPress
In reply to: Want to change my blog into an e-commerce siteWordPress.com and ww.wp.xz.cn are two different things.
This may help: http://www.wpbeginner.com/wp-tutorials/how-to-properly-move-your-blog-from-wordpress-com-to-wordpress-org/
Forum: Fixing WordPress
In reply to: wp-content/plugins directoryYou already have a plugins folder by default when installing WordPress. Are you just trying to install a plugin?
Forum: Fixing WordPress
In reply to: Videos not playing in chrome with warningYour problem is with your theme not WordPress or jQuery. The issue is with you css here:
media="screen" #video iframe, #video object, #video embed { box-shadow: 0 0 15px rgba(0,0,0,.5); position: relative; top: 0; left: 0; width: 650px; height: 365px; display: inline-block; z-index: -999; }Remove the z-index part:
media="screen" #video iframe, #video object, #video embed { box-shadow: 0 0 15px rgba(0,0,0,.5); position: relative; top: 0; left: 0; width: 650px; height: 365px; display: inline-block; }You’re welcome.