estjohn
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Can I use <a href in a postiirc, is there a “CODE” button where you are editing the post at? if so do
<code> <a href="http://www.welivetogether.com/main.htm?id=johnbjr">
<img src="banner1ani.gif" width="469" height="80"></a></code>that is if you arent using some type of plugin for wysiwyg editing
Forum: Themes and Templates
In reply to: Removing borders from linked imagesin your style.css
where ithas
img {
add
border: none;Forum: Themes and Templates
In reply to: FireFox works with thisROFL funny enough.. I would rather have compliance and speed over eye candy.. cos then you can make your focus on content instead of eye candy. Eye candy can change, but content is a one shot thing.. and Search Engines cant see content. IMO.. if you don’t do good in search engines with complaince and content.. then there is no point of eyecandy because limited amounts of people will see it.
but.. as usual thats my 2 cents.. Now if i could just find a way to do a little eye candy to even brighten up my own site..
Forum: Themes and Templates
In reply to: FireFox works with thisUnfortuantely, speed is my deception here.. I have a 5.0/Mb connection here (5.0 down/768up) so what I see as speed is never what it truely needs to be. Once in a while I do dial up just to see what it would make my site look like speed wise… I havent done that in months, nor have I checked a “simulation” of 56k on mine.. i need to lol. with my luck itd take forever and a day for mine to load.
but back to my original point.. its actually good to see someone on dial up make a comment on speeds. for me, i forget that there are people on lesser speeds than me and dial up and I forget to take that into consideration when I build sites.. for these days, there are all types of connections. I know people that have 56k but cant connect (due to old phone lines) faster than 28,800 or 33,600…
jsut another point to keep in mind when building websites is who your target audience is and accomidating for their type of connection speeds.
(sorry for the long rant!)
Forum: Fixing WordPress
In reply to: AdSense suddenly stopped workingIts a Google thing. If you do a search for “adsense not working” youll see tons of posts on the same thing. It is a google thing, and usually starts working correctly in a day or so. Why it does this? Who knows.. youd have to ask google. But its still a google thing and not a WP thing.
Forum: Fixing WordPress
In reply to: img tags not workingbecause you have to click on the title of a post to goto that post’s single.php page to see the full post to see the picture?
It doesnt look like archives.php is showing the full post, just part of it or maybe th excerpt
Forum: Themes and Templates
In reply to: cant get header to line up/* Because the template is slightly different, size-wise, with images, this needs to be set here
If you don't want to use the template's images, you can also delete the following two lines. */#header { margin: 0 !important; margin: 0 0 0 1px; padding: 1px; height: 198px; width: 758px; }
#headerimg { margin: 7px 9px 0; height: 192px; width: 740px; }is a start/… i dunno if it will fix the problem, but it is what shows in the source of your page π
Forum: Fixing WordPress
In reply to: Eliminating Meta Stuff From Displaying Under “More” TagI have used the bunny tags on mine as well.. though I used post teaser plugin to automatically do the excerpt for me on the main page..
so in my main.php i have
<?php the_content('» Read the rest of this entry...'); ?>
<?php the_bunny_tags(); ?>then on the single.php i have the same thing, only the whole post shows with the bunny tags because the_content sees its on a single page (from the post teaser plugin)
i beleive is how/why it worked on mine using that..Forum: Themes and Templates
In reply to: Theme looks Weird in Operagood deal π keep us up to date on how it is going π
Forum: Themes and Templates
In reply to: Theme looks Weird in Opera<table width="800" cellpadding="0" cellspacing="0" border="0">
maybe that should be 800px ?Forum: Themes and Templates
In reply to: Search box text is white?youre welcome π
Forum: Themes and Templates
In reply to: Search box text is white?it might be under style.css
mine is
input, textarea, select {
border: solid 1px #999999;
color: #000000;
background: #eeeeee;
}Forum: Themes and Templates
In reply to: Help with Themeyou create the theme as you would create a theme for any other website..
then you call the wordpress functions where you want things displayedyou can edit php and css in dreamweaver ..
Forum: Plugins
In reply to: How to change header image?/*
#headerimg { background: url('http://paul.buildtolearn.net/wp/wp-content/themes/default/images/personalheader.jpg') no-repeat top;}
*/needs to have the
/* */removed from around it..Forum: Plugins
In reply to: SRG Clean Archives plug-in for archive page<?php srg_clean_archives(); ?>no space between < ? could possibly be it..