Forum Replies Created

Viewing 15 replies - 1 through 15 (of 24 total)
  • Thread Starter pizza-boy

    (@pizza-boy)

    I fixed it, Just had to dig deeper in the data base to find _leadercode
    Thank you for all the support lol

    pizza-boy

    (@pizza-boy)

    First you would need to repair all the existing errors in the code and perhaps once that is complete the header(title)banner should take care of it self

    Thread Starter pizza-boy

    (@pizza-boy)

    Any ideas?

    pizza-boy

    (@pizza-boy)

    look at using buddy press

    Forum: Fixing WordPress
    In reply to: pdf upload error
    pizza-boy

    (@pizza-boy)

    You can do that yourself by going to tools and upgrade and click reinstall. Just make sure you have everything you need backed up as it will erase it all 😉

    pizza-boy

    (@pizza-boy)

    This code

    /* The Header */
    
    .headleft {
    	float:left;
    	width:509px;
    	height:317px;
    	background:url(images/headleft.jpg) no-repeat;
    	position:relative;
    	}
    .headleft .star {
    	width:94px;
    	height:86px;
    	background:url(images/star.png);
    	position:absolute;
    	top:71px;
    	left:10px;
    	}
    .headleft h1 {
    	margin:0;
    	font-size:36px;
    	color:#8f0b0b;
    	font-weight:normal;
    	border-bottom:1px solid #8f0b0b;
    	float:left;
    	position:absolute;
    	top:65px;
    	left:110px;
    	}
    .headleft h2 {
    	font-size:13px;
    	color:#464646;
    	margin:0;
    	font-weight:normal;
    	position:absolute;
    	top:115px;
    	left:110px;
    	letter-spacing:11px;
    	}
    .headright {
    	float:left;
    	width:470px;
    	height:317px;
    	background:url(images/headright.jpg) no-repeat;
    	position:relative;
    	}
    .headrightmenu {
    	position:absolute;
    	top:10px;
    	right:10px;
    	color:#384856;
    	}
    .headrightmenu a {
    	color:#384856;
    	text-decoration:none;
    	}
    .headrightmenu a:hover {
    	text-decoration:underline;
    	color:#384856;
    	}
    .headblock {
    	position:absolute;
    	top:76px;
    	left:0;
    	height:166px;
    	width:442px;
    	padding:10px 10px 0 10px;
    	overflow:hidden;
    	background:url(images/headblock.jpg) no-repeat;
    	color:#212121;
    	}
    .headblock p {
    	margin:0 0 10px 0;
    	padding:0;
    	}
    .headblock-big {
    	font-size:24px;
    	color:#dc7d45;
    	}
    pizza-boy

    (@pizza-boy)

    Bummer, You might try adding no repeat to both the left and right images in css.
    looks like the theme header is made up of 4 image blocks

    both left and right should be sized the same and together no greater than wrapper width of 979. I added no-repeat to your css try replacing this code in you css to see if it helps.

    /* The Header */
    
    .headleft {
    	float:left;
    	width:509px;
    	height:317px;
    	background:url(images/headleft.jpg) no-repeat;
    	position:relative;
    	}
    .headleft .star {
    	width:94px;
    	height:86px;
    	background:url(images/star.png);
    	position:absolute;
    	top:71px;
    	left:10px;
    	}
    .headleft h1 {
    	margin:0;
    	font-size:36px;
    	color:#8f0b0b;
    	font-weight:normal;
    	border-bottom:1px solid #8f0b0b;
    	float:left;
    	position:absolute;
    	top:65px;
    	left:110px;
    	}
    .headleft h2 {
    	font-size:13px;
    	color:#464646;
    	margin:0;
    	font-weight:normal;
    	position:absolute;
    	top:115px;
    	left:110px;
    	letter-spacing:11px;
    	}
    .headright {
    	float:left;
    	width:470px;
    	height:317px;
    	background:url(images/headright.jpg) no-repeat;;
    	position:relative;
    	}
    .headrightmenu {
    	position:absolute;
    	top:10px;
    	right:10px;
    	color:#384856;
    	}
    .headrightmenu a {
    	color:#384856;
    	text-decoration:none;
    	}
    .headrightmenu a:hover {
    	text-decoration:underline;
    	color:#384856;
    	}
    .headblock {
    	position:absolute;
    	top:76px;
    	left:0;
    	height:166px;
    	width:442px;
    	padding:10px 10px 0 10px;
    	overflow:hidden;
    	background:url(images/headblock.jpg);
    	color:#212121;
    	}
    .headblock p {
    	margin:0 0 10px 0;
    	padding:0;
    	}
    .headblock-big {
    	font-size:24px;
    	color:#dc7d45;
    	}

    pizza-boy

    (@pizza-boy)

    Ok I understand, You want each category to show as an independant page where as showing 1 single post for that category then dropping to second page of that category when a new post is made to that category.

    If my assumption is correct you would need to look at custom theme building and making seperate category php files and telling each how many posts to show.

    <?php echo get_category_link($featuredpostscat1);?>"><?php if(strlen($featuredpostscatname1) > 61){ $featuredpostscatname1=LimitText($featuredpostscatname1,10,61,""); $featuredpostscatname1.="&raquo;"; } echo $featuredpostscatname1; ?>

    This can be done and has several things that need to be built. You should seriously consult a theme builder, one I can think of that knows his way around this type of request would be http://www.antisocialmediallc.com/

    pizza-boy

    (@pizza-boy)

    In your wordpress blog? are you speaking of closing comments? If so go to wp-admin find settings click discussions you will land at wp-admin/options-discussion.php set comment to close after “x number” of days

    pizza-boy

    (@pizza-boy)

    The best way I have found to do this is by using seo ultimate plugin which allows me to see all 404 errors quickly and then use redirection plugin which 301 redirects old page to the new page you designate.

    Both of these plugins can be Downloaded and installed from your plugins page, just do a search for each.

    Is there a way to do it all automatically? Change all the old urls to the new.. not that I am aware of.

    pizza-boy

    (@pizza-boy)

    I assume you post each review as a blog post. In this case you would go to wp-admin find appearance menu and click the theme that you are running. you should land at wp-admin/themes.php?page=functions.php Find Number of posts to show and set to 1, any new post will send the existing to page 2

    Forum: Fixing WordPress
    In reply to: pdf upload error
    pizza-boy

    (@pizza-boy)

    First what version of wordpress did they install?
    upgrade to version 2.9.2 then you should see more functions in admin

    pizza-boy

    (@pizza-boy)

    You would have to dig into your css and index/home and single page html. The theme you are using puts all content in

    • so each line becomes basically a
    • bullet
    pizza-boy

    (@pizza-boy)

    A little more information please, like url would help

    pizza-boy

    (@pizza-boy)

    Edit post and replace this portion of the html and update

    <b> <p>Code: Medical Coding and Billing Experts 10500</p>
    <p>From: <a href="http://medicalcodingstaffing.com/Application%20Data/Microsoft/Word/elaine@coldfeetusa.com">elaine@coldfeetusa.com</a></p>
    <p>Busy foot and ankle practice needs F/T front office coordinator. Prior medical or podiatry schedueling & insurance experience required, min 2 years. Competitive salary plus benefits, friendly office with low turnover; covered parking; health club in building. Send resume to elaine@coldfeetusa.com, or fax resume to (303) 871-8003</p>
    <p>Send Resume to: <a href="http://medicalcodingstaffing.com/Application%20Data/Microsoft/Word/elaine@coldfeetusa.com">elaine@coldfeetusa.com</a></p>
    <h3><i><a title="Click to Apply " href="http://medicalcodingstaffing.com/medical-billing-and-codin">Apply</a> </h3>
Viewing 15 replies - 1 through 15 (of 24 total)