citeewurkor
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: NEED URGENT HELP IMMEDIATELYsometimes when I run into permalink issues, I update it twice to get it to kick into gear.
Forum: Themes and Templates
In reply to: Text Wrap around ImagesYou could ad an inline style to your first paragraph like so:
<p style="clear: left">text here</p>
That should move the text down below the image.Forum: Plugins
In reply to: Anonymous PostingI would think they would have to be registered to be able to submit posts for review. The role manager would control who can and cannot write posts.
https://codex.www.ads-software.com/Roles_and_CapabilitiesOf course, you could just make a contact form and let users send you stuff that way?
Forum: Themes and Templates
In reply to: Help? Problems revising theme.heh.. of course.. good ol’ IE..
here’s a couple of other possible solutions:
put<center> ... </center>
tags around the whole table and see if that might center it up for you.And since the calendar is located in an unordered list
<ul>
you could try to put the table in a line item and see what happened then.<li> .... table </li>
. That would probably scoot it over a little without affecting everything else. But then again, there might be some other style defined for line items in your sidebar that could affect the calendar’s look. I haven’t looked very closely at your stylesheet.Forum: Fixing WordPress
In reply to: Weird permalink issue.hmm.. that is weird.
Open up your template’s index.php file and find the reference to this:
<?php posts_nav_link .....
followed by some code. What do you have after that?You can go to “presentation / theme editor” in your admin panel and click on your index file. It might be called something like “Main Index Template” or something. Scroll down and find the above and post what it says after php posts_nav_link.
Forum: Plugins
In reply to: A little programming help pleaseI’m not exactly sure what you’re wanting to do, but to change my default rss feeds for visitors, I just changed them in my theme’s header.php file between the <head> tags. They would look something like this:
<link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="https://feeds.feedburner.com/yourfeed" />
<link rel="alternate" type="text/xml" title="RSS .92" href="https://feeds.feedburner.com/yourfeed" />
<link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="https://feeds.feedburner.com/yourfeed" />
Forum: Fixing WordPress
In reply to: Moved to a new serverThe reference to your stylesheet is commented out for some reason:
<style type="text/css" media="screen">
<!-- @import url( https://fatmatrix.com/wp-content/themes/gray-gets-green-10/style.css ); -->
</style>
Fix that, and your site should be purty again.I think the plugin is supposed to work only in posts and pages. If you want an adsense ad in the sidebar, just place the actual adsense code you get from google adsense where you want it to be.
Forum: Themes and Templates
In reply to: Help? Problems revising theme.Add this to your stylesheet:
#wp-calendar, #wp-calendar caption {margin-left: 30px;}
Centers it up quite well. Be sure to test it cross-browser, though. I can only test it in Firefox with the webdeveloper extension.
You can adjust the 30px a little either way to get it exactly where you’re wanting it.Hope this helps.
Forum: Fixing WordPress
In reply to: Formatting the title in Read More LinkForum: Themes and Templates
In reply to: New Template not showing correctly for homepageGlad it worked for you. Granted, using tables for layout is supposedly discouraged, but if it works, it works. ??
Forum: Fixing WordPress
In reply to: wrong email from my sitego to options/general, and check the admin email address that is listed there.
Forum: Themes and Templates
In reply to: New Template not showing correctly for homepageI used the webdeveloper extension to add a table style:
table {
font-size: 1em;
}This made it display properly in my browser.
You could add an inline style just for your homepage.
In your table tag, add an inline style to set the font size to 1em.
i.e.
<table style="font-size: 1em">
I noticed in the source code, there’s a class called “table2”, but I couldn’t locate that in your CSS anywhere.Hopefully that’ll help ya.
Forum: Themes and Templates
In reply to: IE Positioning Bugowen,
I took a very quick peek and will take a stab at it:
This code in your css stylesheet:
‘#outerright {
position:relative;
width:200px;
float:right;
clear:right;
color:#CCCCCC;’I think that “float:right;” might be causing your IE bug. Might try to comment out the float and see what happens. If it doesn’t work, try floating it the opposite direction:
‘float: left;’
Like I said, it was just a quick peek.. ??
Can’t really test it in IE, because, well. IE is IE…Forum: Fixing WordPress
In reply to: PING COMMENTSThey’re either trackbacks or pingbacks.
Of course, they could be spam, too. Up to you if you’d like to allow them or not.
https://codex.www.ads-software.com/Glossary#Trackback