xanarchistx
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Rename WordPress Folder ProblemsIt must be the css, because when I change the name of the folder, and set everything up, the page works, but it doesn’t seem to load the css, because the page isn’t even formated, let alone images showing up.
Forum: Fixing WordPress
In reply to: Get rid of numbers next to comment postsActually, I didn’t notice that you added the link to your post until I came back to the forums. You must have edited it, cause the first time around it wasn’t there.
But thanks for trying anyways!
Forum: Fixing WordPress
In reply to: Get rid of numbers next to comment postsAhh, all I had to do was just add ‘list-style-type:none;’ under the li in the stylesheet, and that’s it!
Now the numbers are gone. Didn’t have to change or remove any of the ol or li tags.
Thanks anyways!
Forum: Fixing WordPress
In reply to: Get rid of numbers next to comment postsProblem with that. The way I have it set up is this:
<ol class="comments_list"> <?php foreach ($comments as $comment) : ?> <?php echo get_avatar(); ?> <li <?php echo $oddcomment; ?>id="comment-<?php comment_ID() ?>"> </li> <?php $oddcomment = ( empty( $oddcomment ) ) ? 'class="alt" ' : ''; ?> <?php endforeach; /* end for each comment */ ?> </ol>What exactly do I alter to get rid of numbers? One issue I have is that if I get rid of any of this code, it either converts to bullets, or screws up the format.
Forum: Fixing WordPress
In reply to: Prevent Search Engines from Adding My WordPress SiteThanks a lot. Now let’s see what happens!