doc4
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: What has happend to my blog?paulprobert2,
From what I can tell, it looks as though you’ve copied the site code directly into your stylesheet ( style.css ) overriding all the styles.
Take a look here:
http://paulg.co.cc/wp-content/themes/default/style.cssIf you just installed it, replace the style.css file.
Forum: Fixing WordPress
In reply to: Publish Dateweiler14,
I don’t think this is possible within the WordPress dashboard. You might try doing it from your database, this would at least be quicker. phpMyAdmin for example.
Forum: Fixing WordPress
In reply to: Screwed up header.phpDCPSR,
From the code it looks as though the ‘Page’, ‘Footer’ and ‘Bottom’ wrappers are all caught within a line item ( li ) tag. The second ‘Selected’ tag to be exact.
Add the ending li tag here:
<li class="selected"><a href="http://dcprosportsreport.com/">Teams</a></li>Forum: Fixing WordPress
In reply to: setting link based on page titlexsux2bmex,
The permalinks for each post should be adding a dash between each of the title’s words. Like below:
Title: Hello World
Permalink: hello-worldCheck the permalinks under each post title on the edit post page.
– – – –
A little late on this post, nice catch though. I had permalinks on my mind at least.Forum: Fixing WordPress
In reply to: changing my url to look normalmbeagle,
Visit: Settings > Permalinks
Select: Custom Structure
Add:/%category%/%postname%/to the text field
Save the changes.Forum: Fixing WordPress
In reply to: Edit This on front page removalchr1st0,
What did you remove exactly?
Forum: Fixing WordPress
In reply to: Google Analyticsjohnny1313,
So you think this is too many visitors?
There is no fix for a bounce with the exception of including content that the bounced users would want to stick around and read. Take a look at this article on Bounce Rate: http://www.google.com/support/analytics/bin/answer.py?hl=en&answer=81986
Forum: Fixing WordPress
In reply to: Edit This on front page removalchr1st0,
Generally ‘edit this’ should only appear on login. Look for it in the following php files under Appearances:
category.php
single.php
archive.php
page.phpForum: Fixing WordPress
In reply to: Home page displays, all other pages are bad URLsMassRecovery,
Have you set your permalinks? Settings > Permalinks Try changing them to ‘Custom Structure’ with
/%category%/%postname%/in the empty field.Forum: Fixing WordPress
In reply to: Adding a Link to a Postinstitutionalms,
The WordPress post page has a link button in the text editor. Look to the top of the editor for the small chain icon. The rest should be self explanatory but let us know if you still need help.
Forum: Fixing WordPress
In reply to: Removing the words “search for” from baxSdedalus,
If you don’t see a searchform.php file then the above code has to be located somewhere in your theme files, unless you have some scripts running that I don’t know about.
Forum: Fixing WordPress
In reply to: Cannot remove a sliver of white spacexedious,
You only need one instance of the #footer tag. The original post here makes it sound like you added the white?
Yes, just change #FFFFFF to transparent and you will be fine. Then feel free to combine those two styles like below.
#footer { width: 100%; padding: 0; margin: 20px auto; clear: both; border: 0; background: transparent url('images/kubrickfooter.jpg') no-repeat top center; }Forum: Fixing WordPress
In reply to: Banner.pngScott_T,
Send over a link to the site. We would typically create the banner we wanted save it as the file type you need, in this case .gif and locate where the image source is to change the file type.
This could be in the stylesheet as a background image or hard coded.
Forum: Fixing WordPress
In reply to: Removing the words “search for” from baxSdedalus,
You can see the code here. Check the searchform.php file
<form action="http://www.lontanomusic.com/wordpress/" id="searchform" method="get" role="search"> <div> <label for="s" class="screen-reader-text">Search for:</label> <input type="text" id="s" name="s" value=""> <input type="submit" value="Search" id="searchsubmit"> </div> </form>Forum: Fixing WordPress
In reply to: Hiding page title [Mystique]cloudcomputingtopics,
Technically speaking this is good practice design. Is this what you’re looking for:
<h1 class="title"><?php the_title(); ?></h1>( found in the single.php file. I’m not exactly following, I looked at the demo and the Home page does not include a Home title, at least in the demo.