myinstinctwaswrong
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Where are my MP3’s and Images?Check your settings | Miscellaneous page, it should tell you where they are
mine are in https://www.website.com/wordpress/wp-content/uploads/2008/09
I have my blog set to “Organize my uploads into month- and year-based folders” on the Miscellaneous Settings page.
Forum: Fixing WordPress
In reply to: removing linksSomething is major wrong with crownequityholdings.com – there is a div with a table in it coded up in the <head> section.
Forum: Fixing WordPress
In reply to: How to show which user wrote the latest postForum: Fixing WordPress
In reply to: Question about PHP sites and WPit’s probably a path issue
./Blog/wp-blog-header.php
would indicate the same folder as the file you are creating.
try just
/Blog/wp-blog-header.php
and be sure that is at the top of your new file. Most sites are case-sensitive too, so be sure it’s Blog and not blog, or vice versus.
Forum: Fixing WordPress
In reply to: Menu Bar Separatorsthe | is actually a CSS border as stated in your stylesheet
#menu li a {
height: 25px;
padding: 0 5px 0 5px;
display: block;
float: left;
color: #6e86ad;
line-height: 25px;
text-decoration: none;
border-width: 0 1px 0 0;
border-style: solid;
border-color: #aaa;
}It specifies a right border of 1px, solid, colored #AAA
Forum: Fixing WordPress
In reply to: Why does Worpress not update the web page immediately?try holding down your Control key and clicking the Refresh page icon in your browser
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!I don’t know for sure – I just figured it was in the index.php file since the CSS div is “body_right”. you will need to dig around a bit.
Don’t you think the 125 one that is displaying is probably added by your Adsense manager widget thing-a-ma-jig?
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!I just looked at your site – I see 2 ads – one 468×60 at the top, and a 125×125 (or so) underneath the 4 predefined slots.
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!yes, you are correct about removing the a href stuff – my mistake to not include that.
When I first did mine, I also got the page not found thing – I let it go while I worked on other changes and the problem worked itself out, so I never spent any time trying to figure out what was going on.
Forum: Fixing WordPress
In reply to: Adsense Not Showing Up After An Upgradethey show up for me using IE7, and FireFox 3.x, and Safari 3.1.2
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!your 125×125 are probably in the index.php file, listed in your page source as
<div id=”body_right”>
<div id=”body_right_content”><div id=”right_ads”>
<div>
<img src=”https://corusa.com/blog/wp-content/themes/Choc/images/!ads.gif” alt=”ads” />
</div>
<div class=”right”>
<img src=”https://corusa.com/blog/wp-content/themes/Choc/images/!ads.gif” alt=”ads” />
</div>
<div>
<img src=”https://corusa.com/blog/wp-content/themes/Choc/images/!ads.gif” alt=”ads” />
</div>
<div class=”right”>
<img src=”https://corusa.com/blog/wp-content/themes/Choc/images/!ads.gif” alt=”ads” />
</div>
</div>
<div class=”clear”></div>if you only want two blocks, then delete the others.
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!on my theme, I just edited the header.php file. In your theme header.php file, locate this
<img src=”https://corusa.com/blog/wp-content/themes/Choc/images/!ban.gif” alt=”banner” />
and replace it with the code you get from your google adsense account for a 468×60 banner ad. The theme lists it as a 480×60 ad, but adsense will provide 468×60, so it will leave you some spacing.
Forum: Fixing WordPress
In reply to: Can I add a Line Break to the TagLine?ok, thanks. I ended up shortening the tag line, and adding the rest back to the header file as static html as you suggested – worked like a champ!
Forum: Fixing WordPress
In reply to: AdSense not working in pre-existing theme slots!on my theme, I had to manually insert the code for the pre-defined ad slot (my theme only had one). Then I used the Adsense widget to add more adsense code dynamically in my between my posts. Interestingly enough, I set the Adsense widget to a limit of 3 ad units – and it counts the pre-defined one that is in the header.
I think you will have to edit your theme files to remove the unwanted pre-defined areas.
Forum: Fixing WordPress
In reply to: Can I add a Line Break to the TagLine?ok, I can do the php edit without issue. Where else is the tagline used? Not that it matters, more of a curiosity.
And thanks again for your help.