Home » WordPress (Page 2)
Category Archives: WordPress
Installing WordPress Plugins
Always have a backup of your WordPress site, belt and braces is best. Use your file manager or FTP to make a copy of the site and use and export your WordPress database using mySQLi admin on your local PC. Plugins can interact with each other so try out the plugin with the others inactivated […]
The “Perils of Plugin” – or how I learned to live dangerously
Why might I want a plugin? It does something that is useful that I don’t know how to do and I’m not going to pay a WordPress developer to do it Ta very much. “The site really looks good now I have a load of butterflys making love to the world in the corner.” If […]
Sub-sub menu Twenty fourteen secondary menu is not aligned
A work round for where your sub menus in Twenty fourteen secondary menu is not aligned, detached or overlaps. If you have customised your 2014 secondary menu and the sub or sub-sub menu doesnt’ work then add a style change in your twenty fourteen child’s CSS. Simply change the xxxpx width of the CSS “class […]
Removing “Proudly powered by WordPress”
You should always create a child theme for the theme you are using and modify those templates. If your web developer has not removed or modified the message “Proudly powered by WordPress,” then the chances are they don’t know how to! The are two majour types of website designer using WordPress. Those with no real […]
Setting a different header image on a mobile phone
This method can be used both in a WordPress website or a non-WordPress web design. Basically, I’ve made here an assumption that the website design header image is displayed as a background image in a div called header. The need for any positional information is ignored here for clarity. Assuming the header image is 1080 […]
Using CSS3 @media Rule to produce a responsive WordPress website design
Firstly, you can set style by selecting a particular style sheet for different screen resolutions or media types and devices. <link rel='stylesheet' media='mediatype and|not|only (media feature)' href="stylesfile.css"> However, the @media is a CSS rule that allows you to set different styles for diferent screen resolutions or media types/devices. CSS3 uses media queries to check out […]
Migrating your WordPress website to a new hosting
The best way to do this is to use a good Export Ppuging to back up your WordPress website’s content onto a PC and then to FTP the Whole site onto your PC. By this combination you will make sure the two things that make up your WordPres website is safe -the content and design. […]
Plugins that limit what certain admin users can do in WordPress.
As a WordPress website developer you sometimes you need to limit or extend what certain admin users can do in WordPress beyond what WordPress allows. Often to protect your WordPress newbie client from the odd major booboo in their early days on the system. This is where user ‘Role’ comes in. WordPress Plugins are a […]
Changing WordPress Twenty Fourteen’s navigation hover background
Simply add the following to your WordPress child menu theme’s style.css file. The colour here is set to dark grey (#333) – simply set the background colour to your choice. .primary-navigation ul ul { background-color: #333; } .primary-navigation li:hover > a, .primary-navigation li.focus > a { background-color: #333; } .secondary-navigation ul ul { […]
Centering WordPress Twenty Fourteen’s webpages
This is a useful trick when using the Twenty Fourteen theme to develop websites. In your WordPress website’s ‘child theme’ style sheet add the following CSS .site { margin: 0px auto; } This sets the top and bottom postions of the WordPress website you are developing to zero pixels and the left margins to […]