Harry
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: How to hyperlink image at side barThe most basic way to link this would be:
<a href="http://www.yourlink.com"><img src"yourimage.jpg" /></a>Forum: Fixing WordPress
In reply to: IE Crash IssueDo you have jQuery linked correctly? As in the console it’s complaining that jQuery is not defined.
The problem is either, as the error states, jQuery has not been loaded. Or secondly, as it’s jQuery UI that is seemingly complaining about jQuery, it could be a case that the UI lib has been defined before the jQuery Core lib. So place the reference to jQuery UI after the call to Jquery in the footer.
HTH,
HarmckForum: Fixing WordPress
In reply to: custom menu "home" link – colour problemproductlover, is your issue resolved? just took a look at your site, and it seems the colour is now red.
Forum: Fixing WordPress
In reply to: Sidebar Links not workingI think the sidebar problem is on this page: http://traceycameron.ca/news/
Forum: Fixing WordPress
In reply to: Sidebar Links not workingOn line 22 of your style.css, your #content div is floating over your sidebar. Causing your sidebar to effectively sit behind your content div, which is why the links don’t work.
Reducing the width of the #content div from:
width: 780pxto say:
width: 580pxshould fix your problem. (may have impact else where on your site, haven’t checked)
Forum: Themes and Templates
In reply to: Themes for jewellery e-commerce shopWhile this can be done using WordPress, albeit with a bit of work/hacking/investment.. I doubt you will find a single theme that will facilitate all of these without the use of multiple plugins and a lot of time.
However, if you’re looking for a customisable e-comm solution, take a looking Shopify. It’s a SaaS service which offers most of what you describe, as well at the ability to build/customise your own theme, or purchase other themes.
Forum: Fixing WordPress
In reply to: custom menu "home" link – colour problemDo you have a link? Because it may be because of an CSS inheritance problem that is overwriting your site.
When you hover over it, you want the hover color to be red?
Try adding #menu-homemenu a:visited so it will be as below:
#menu-homemenu a:hover, #menu-homemenu a:visited {color: red; text-decoration: underline; font-weight: bold; }Forum: Fixing WordPress
In reply to: custom menu "home" link – colour problemcolour is spelled wrong, css uses the American spelling, drop the ‘u’, so it will be color
Forum: Fixing WordPress
In reply to: My Site is EXTREMELY SlowI tested this as well, and for the homepage, the downloaded files amounted to just over 500kb, and it loaded in about 6.7s. So it wasn’t too bad.
I checked on Chrome anyways, hope that helps.
Forum: Themes and Templates
In reply to: Loop not displaying content in pagesget_the_content is missing the parenthesis i.e. () which references the call to the function. Plus, I think get_the_content function doesn’t echo the content, it allows you to return the content for use within your php code, so best to stick with the_content() for simple outputting.
Hope this makes sense.
Forum: Themes and Templates
In reply to: Loop not displaying content in pagesTry:
<?php the_content(); ?>Instead of:
<?php get_the_content ?>If you have access to your web host, just remove the wordpress install by first backing up the directories so that you can restore at a later date. If you have access to your database, or know a tech savvy person, they can updated the password and email address directly via the database.
But be careful.
Forum: Fixing WordPress
In reply to: Remove left sidebar from world of business bue028The Twenty Ten theme has inbuilt features which allow you to easily alter how it looks, and was specifically designed for this purpose, custom themes often don’t have this level of configuration. They are usually pretty static and require a bit of work to.
The theme you’re using will have to be modified, so if you’re familiar with the process it will be somewhere within the PHP files in the theme, and you will most likely need to alter the CSS as well.
Good luck,
HarForum: Fixing WordPress
In reply to: "You could turn on Publicize" What's that about?Do people not know how to search any more?
Forum: Fixing WordPress
In reply to: After Importing from .com, Embedded Video Not WorkingCool, well good luck.
Another potential idea is to post a job to http://jobs.wordpress.net/ and seek a professional to help you with you migration and set up. At least that way you can benefit from people’s professional experience and get your website up and running how you want it.