thaking
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar discrepency IE and Firefox.i think your problem lies in the fact that you have your search info surrounded by
<li>tags…try removing that and see if that helps….Edit i misread what you typed…i thought you were trying to line up the search button…you can ignore what i’ve typed…
Forum: Fixing WordPress
In reply to: Validation Errorrevalidate with with a check in “Show Source” and it will show you exactly where the errors are…
Forum: Fixing WordPress
In reply to: How to Make Post Summaries?when you are writing your post there is an icon that looks like two white separate blocks over each other…if you hover over the icon it says “more”…click on that and it inserts a Read More link in your article….
Forum: Fixing WordPress
In reply to: moving databasesok, gotcha…that’s what i suspected…i don’t currently have a database under mysql so that’s why i didn’t see it…
thanks for the help…
Forum: Fixing WordPress
In reply to: moving databasesok, i think i follow you…i go to my wp-config.php file and edit these fields with the new info:
define('DB_NAME', 'name');
define('DB_USER', 'user');
define('DB_PASSWORD', 'pword');
define('DB_HOST', 'host');i don’t currently see a connection string in my control panel, maybe that’s because i won’t see it until the database is moved over – do you think?
Forum: Fixing WordPress
In reply to: Contributer Listdoes this do what you’re looking for?
http://codex.wordpress.org/Author_TemplatesForum: Fixing WordPress
In reply to: faviconi don’t think IE shows the favicons in the address bar…i might be wrong (it’s been years since i’ve used IE)..
for the date, look here:
http://codex.wordpress.org/Formatting_Date_and_TimeForum: Fixing WordPress
In reply to: Sidebar issuesto start with, you have no Doctype and errors within your page…fix those first and see where you go:
http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.tellmealie.com%2Fx%2FForum: Fixing WordPress
In reply to: My Site Only Displays Correctly in Firefox.in addition to what whooami stated, i think your problem lies with this line of code:
<!-- D(["mb","Forum: Fixing WordPress
In reply to: Creating PHP.INI to improve super-slow site (Godaddy host)i use godaddy and have zero problems with my site…loads fast every time..granted my site is in its early stages and i don’t have much content…
your site loaded relatively quickly for me despite all the videos you have on your site…
as mentioned in your other thread http://wordpress.org/support/topic/91433?replies=5
this works fine for me with FF…Forum: Fixing WordPress
In reply to: Sidebar pushed over in Firefoxglad it is working, even if not perfect…
Forum: Fixing WordPress
In reply to: How to edit code?well, depending on what line of code you want to add and where you want to add it, what you could do is FTP the file you want – say your sidebar.php file – and insert the code and FTP it back up…if you want to edit the CSS you can use the theme editor…plugins, plugin editor…
Forum: Fixing WordPress
In reply to: how to put items BELOW footer?have you tried inserting the code inside of your footer tags? reason i ask, when i look at your code, the ads fall outside of your
<div id="footer">tags…Forum: Fixing WordPress
In reply to: Sidebar pushed over in Firefoxone thing you have is
#content {
width: 520px;
margin-top: 20px; margin-right: 20px; margin-bottom: 20px; margin-left: 240px;
}
reduce that last one to say 20 px and that will at least move up your content…or it should….