PMcA2oo9
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Linking Standalone CSS to new page template issues.Yeah sure, the site’s,
Sounds-Dope.comAnd the page in question is, https://sounds-dope.com/peter-mcallister/
Any help would be amazing!
Forum: Fixing WordPress
In reply to: Custom Header for one pageOk first things first, you will need to create a secondary header.
Naming the file as, header-secondary.php
Inside this file the only real essential coding should be this at the start,
<?php /* Template Name: Widgetized Page */ ?>
This turns it into a template page and allows it to be used on the page you desire.
Next step would be implementing some scripts that you may want to work with, for example something like this,
<link href="<?php bloginfo('template_directory'); ?>/css/ddsmoothmenu.css" rel="stylesheet" type="text/css" /> <link href="<?php bloginfo('template_directory'); ?>/css/prettyPhoto.css" rel="stylesheet" type="text/css" /> <script language="JavaScript" type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery-1.4.2.min.js"></script> <script language="JavaScript" type="text/javascript" src="<?php bloginfo('template_directory'); ?>/js/jquery.form.js"></script>
After that you can fill it with whatever content you want, for experience if you are just trying to make a few changes to the header you already have I would suggest copying your header code into the secondary header and then just removing or adding the desired code.
When it comes to implementing this secondary header into your page all you have to do is insert this at the start of the page.
<?php get_header('secondary'); ?>
Hope this helps a little, Pete.
Forum: Fixing WordPress
In reply to: Increase in WordPress Generated Numbers in PermalinksGo into your settings, then permalinks and make sure ‘Post name’ is selected in the common settings, and your Custom Structure looks like this, /%postname%/
This should make your links looks something like this,
electronics/logitech-webcam-price/Forum: Fixing WordPress
In reply to: How to make a website live??Ok so first things first, have you installed WordPress properly?
Forum: Fixing WordPress
In reply to: Menus and Widgets errorsAre you trying to create a new custom widget area?
Forum: Fixing WordPress
In reply to: Columns overflowing.Problem solved! Thanks for the head’s up on firebug, I was able to simply locate what section of the styling that needed to be altered, added a simple border, boom problem solved, thanks so much for the help!
Forum: Fixing WordPress
In reply to: Columns overflowing.The site’s only based on a local server as of yet that’s the reason why I posted the CSS here.
I’m sure I could set up a free domain and hosting and install wordpress on that if that would lead to a solution to this problem?