thisisedie
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: goofed editingUpload it using FTP.
Forum: Fixing WordPress
In reply to: tried everything and page will not centerMight try validating your site. You have a few errors that may be causing things not to work right:
Forum: Fixing WordPress
In reply to: tried everything and page will not centerThat’s weird. When I copied and pasted your code and tried it on my comp it worked. Sigh.
Forum: Themes and Templates
In reply to: changing a themeForum: Themes and Templates
In reply to: cant fix problemI answered you here:
http://wordpress.org/support/topic/251369?replies=2
Please don’t double post. There’s no point in it.
Forum: Themes and Templates
In reply to: How Do I change the font for the Title of My WebsiteChange
color:#000000;
font-family:”Verdana”,Verdana;
font-size:30px;and
color:#000000;
font-family:”Verdana”,Verdana;
font-size:15px;to what you want them to be 🙂
Forum: Everything else WordPress
In reply to: Settings for “settings/writing” and Gmail SettingsForum: Everything else WordPress
In reply to: My site’s been hacked (I think!)Why do you think the sites been hacked?
Tip: When you want help, you have to give details. We have no idea what’s going on so we can’t even begin to tell you how to fix it.
Forum: Fixing WordPress
In reply to: tried everything and page will not centerIn the body tag change:
margin-left:auto; margin-right:auto;
to
margin:0 auto;
Forum: Fixing WordPress
In reply to: goofed editingYou’re gonna have to give more info than that.
how can i get in to fix this goof up
Get in where? *takes a wild guess* Were you using the theme editor in admin? Are you now unable to get into admin? If so, reupload the unedited functions.php of the theme.
Forum: Fixing WordPress
In reply to: missing apperance link on dashboardSo everything’s there but those 3? Can you show a screenshot?
Forum: Fixing WordPress
In reply to: How to get blog to split into pages once I’ve made so many posts?Put
<div class="navigation"> <div class="alignleft"><?php next_posts_link('« Older Entries') ?></div> <div class="alignright"><?php previous_posts_link('Newer Entries »') ?></div> </div>in the index.php of your theme (look at the index.php of the default theme for placement) and
.navigation { display:block; width:100%; } .alignleft { float:left } .alignright { float:right; }in your stylesheet if they aren’t already there and then go to admin/settings/reading and choose how many posts you want to show on the front page. Default is 10.
Forum: Installing WordPress
In reply to: problem with installFortunately I’m sure Thisisedie saw my subsequent post after his. As mentioned, I goofed on my initial response
I did indeed 🙂
Forum: Installing WordPress
In reply to: problem with installI personally feel that linux is a much better option all the way around and WP likes it better. WordPress and windows often times have a conflict of interests lol.
Forum: Fixing WordPress
In reply to: how do I make a non-blog page the default page?Well that depends on what you mean by “non blog page”. If you mean independent from WP then put wordpress in it’s own directory and make a standard HTML or PHP index in the root. Then you can link to your blog and/or other stuff.
If you mean a static page within WP without blog posts then create a page with whatever content you want on your main page and then under settings in admin, go to reading. Select “a static page” and then choose the page you just created.