shadow
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Cannot hide title of blog (tried everything)You need the
idandclassleft in, otherwise your css will fall apart.Forum: Everything else WordPress
In reply to: Duplicate contentSorry, I did miss the fact it was not verbatim. It is open again now.
Forum: Fixing WordPress
In reply to: Cannot hide title of blog (tried everything)You shouldn’t need any code in these divs, but leave the divs in place so your CSS works.
<div id="headwrap"> <div id="header"> <div id="headerimg"> </div> </div><div id=”desc”>
</div>
</div>Forum: Plugins
In reply to: Help me modify category displayIf you are using the default theme, remove this code from your archive.php
<div class="entry"> <?php the_content() ?> </div>If you do not want the time to show either, also remove this code:
<small><?php the_time('l, F jS, Y') ?></small>Forum: Fixing WordPress
In reply to: Tried to activate plug-in and blog disappeardI gather you fixed this? I can see your site.
And to ftp to your site, you should have some ftp login details from your host, so you just need to find yourself a ftp client [Filezilla is recommended] and start accessing your files via ftp.
Forum: Fixing WordPress
In reply to: Cannot hide title of blog (tried everything)In your header.php look for something similar to the following and remove it.
<h1><a href="<?php bloginfo('siteurl');?>/" title="<?php bloginfo('name');?>"><?php bloginfo('name');?></a></h1>And for the description/tagline bit remove this:
<?php bloginfo('description');?>Forum: Fixing WordPress
In reply to: Help, please, continuedA couple of things to try.
Add the width to your .entry class:
.entry { background: #ECDB96 url('images/corner.jpg') no-repeat top left; margin: 20px 20px 0 0; padding: 12px; width: 530px; }Change the padding in your sidebar ID:
#sidebar { background: url('images/sidetop.jpg') no-repeat top; padding: 0 0px 40px 0px; margin-top: 202px; }And not sure why you have this div ID and class in place?
<div id="content" class="narrowcolumn">Forum: Fixing WordPress
In reply to: Removing the Edit ButtonsThe code is now located in /wp-includes/js/quicktags.js
Just take out whichever tags you do not want, for instance, the following example would remove the link tag if taken out of the code.
edButtons[edButtons.length] = new edButton('ed_link' ,'link' ,'' ,'</a>' ,'a' ); // special caseForum: Everything else WordPress
In reply to: Duplicate contentIt will only post once but be listed under each category that you tag.
Forum: Fixing WordPress
In reply to: lost access totallyIf you would like to email me I will see what I can do to help.
shadow12 gmail
Forum: Themes and Templates
In reply to: Talian Header ImageIn your css, look for the following ID:
#header_taliaand add this to it.background-image: url(/images/yourimage.jpg) top left no-repeat;You need to upload your image to your theme directory and put it in a folder called /images
Note: The current header image is being called from your body tag using the following:
background-image: url(images/headerbg.gif); background-repeat: repeat-x; background-position: top;so if you are just considering a small change, you could change this image and ignore my first suggestion.
Forum: Fixing WordPress
In reply to: Site Hacked? Please helpJust spent 10 minutes moving around your site, cleaned my cache several times, tried different browsers and apart from a bit of slow loading at times, it all works. The contributors page seems to go nowhere though.
I do not see the problems you have mentioned above although I cannot comment on the admin panel issue. I can access your login page.
I see you are using 2.0.1 so it may be an idea to update whenever you get the chance.
Forum: Fixing WordPress
In reply to: Deleted after installingUsing your chosen ftp client, upload your theme to /wp-content/themes/ and then in your Admin panel within WP, go to Presentation and click on the theme you wish to use.
Forum: Themes and Templates
In reply to: My blog is not Loading….urgent help neededTry turning off your plugins one by one, or alternatively, change your theme to the default.
Forum: Themes and Templates
In reply to: Displaying links list left to right instead of vertically?Wherever your links are and whatever class it has for this particular list, just add the following to your CSS to apply to that class:
display: inline; list-style-type: none;