ajd777
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Making the blog site part of an existing web site ?Your best bet is to make a theme out of your existing site by editing the header.php, sidebar.php and footer.php of any theme.
Forum: Fixing WordPress
In reply to: displaying author informationOpen:
“YOUR WORDPRESS DIRECTORY/wp-content/themes/default/index.php”find:
<!-- by <?php the_author() ?> -->
replace with:
by <?php the_author() ?>
.Forum: Fixing WordPress
In reply to: Putting wordpress into my site…no idea where to start…Everything except the links in the header is just a very well themed wordpress.
Forum: Fixing WordPress
In reply to: wrapping text around a picture in a postYou will add the whole
<img src="https://blahblah.com/image.jpg"/>
or[img]https://blahblah.com/image.jpg[/img]
where it says that.Forum: Fixing WordPress
In reply to: links in headerEDIT:
I’m getting two different codes when I view the source so the following may not be correct. However, at the very least you should fix the errors in the page.
https://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fbuildthatlist.net%2FThat may be the source of your (and my) problem
Original Post:
This is the code you have for your link:
<td https://www.aweber.com/?212171="" width="70%">
<img src="https://www.aweber.com/banners/010222/ani-increase-sales.gif?id=212171" alt="Unlimited
Autoresponders by AWeber" align="bottom" border="1" height="60" hspace="5" vspace="5" width="468">
</td>
<td>
It should be:
<img src=”https://www.aweber.com/banners/010222/ani-increase-sales.gif?id=212171″ alt=”Unlimited
Autoresponders by AWeber” align=”bottom” border=”1″ height=”60″ hspace=”5″ vspace=”5″ width=”468″>
</td>Somehow you combined your td and a tags.
Forum: Fixing WordPress
In reply to: wrapping text around a picture in a postLike this (scroll down a bit)? https://www.revereknowledge.net/
In html mode add the following code before the paragraph where you want the image to float.
<div style="float:left;">
Image code here
</div>If you want it to float on the right just change float:left to float:right. Unfortunately it is either right or left, there is no center option built into css.
Forum: Themes and Templates
In reply to: uploaded theme not showing up on “manage themes” pageMake sure the css file is named style.css and has a valid header and as moshu said make sure the theme is in its own folder inside the theme directory.
Forum: Themes and Templates
In reply to: Main Page Isn’t Formatting To The ThemeThis is because your style sheet isn’t where it is looking for it.
https://www.e816.org/content/wp-content/themes/andyblue/style.css
Should be your css but there is nothing there.Make sure the themes are where they should be.
Forum: Fixing WordPress
In reply to: Help needed, trying to align Google Adsense within postDid you add the code in html mode to the very beginning of a post?
It should look like the first post: https://www.revereknowledge.net/
Forum: Fixing WordPress
In reply to: Hidden fields in forms creating line breaks after 2.01 upgradeThere is probably a space or line break before the first <?php or after the last ?>.
Forum: Plugins
In reply to: Stats plugin.https://www.randypeterman.com/StatTraq/index.php
The best I’ve found.
Forum: Fixing WordPress
In reply to: Using template tags within PHP pagesThe bloginfo function is built to automatically echo its data, so when you call then function it echos and then the rest of what you were trying to echo echos.
Forum: Fixing WordPress
In reply to: how do you/can you add google adsense to a blog pageA little shameless self promotion here but if you use the widget plugin:
https://anthologyoi.com/wordpress/google-adsense-widget.htmlForum: Fixing WordPress
In reply to: Help needed, trying to align Google Adsense within post<div style="float:left;width:XXXXpx">
`
ADSENSE CODE HERE.
</div>Just replace XXXX with the width of the ad block you are using and add the whole section to your post (in html mode).
Forum: Fixing WordPress
In reply to: Putting WordPress into a html pageJust put everything above that line in the header.php of your theme, and everything after in the footer.php of your theme.