shadow
Forum Replies Created
-
Forum: Installing WordPress
In reply to: need help installing wordpress softwareAnd you have set up a database and ftp’d your files to your domain ?
Forum: Installing WordPress
In reply to: need help installing wordpress softwareAre you installing it online?
Forum: Themes and Templates
In reply to: size problem on thatothereden themeNext:
Change this in your footer –
background-height: 220px; backgorund-weight: 800px;to
height: 220px;Forum: Themes and Templates
In reply to: edit themeYou can move your image right by adding the following to your CSS file in your theme directory.
.fim-thumbnail a img {margin-left: 5px;}Forum: Themes and Templates
In reply to: size problem on thatothereden themeTake all the line breaks out. They are unnecessary. Any height adjustment needed can be done via the CSS [just FYI too, line breaks should be written as
<br />Once you remove the line breaks we can look at what else is needed.
I gather you are viewing this in something other than Firefox?
Forum: Installing WordPress
In reply to: Sideblog breaks pagesHi Megorious,
Thank you for your kind words. You do know I can’t pay, don’t you… π
And yes, I designed it mostly myself. I just enjoy playing with theme designs.
Forum: Themes and Templates
In reply to: Is it possible to post above header?One such place is right here:
http://wordpress.org/support/forum/5
Like you, [and myself to be honest], a lot of people who visit here are keen to change the ‘normal’ layout structure.
Post your ideas, ask for help and see what happens.
Forum: Themes and Templates
In reply to: Is it possible to post above header?Question – why are all the headers first?
It’s a bit like asking, why is the door to your house at the front? It just makes the most sense.
That does not mean you have to have it that way, but to have the header below, would require a bit of hacking to most theme structures.
Forum: Fixing WordPress
In reply to: Posts being cut off in Reading window, no scroll barThere is a member on this site who goes by the name of Root.
He’s the man to speak to for help on this particular issue.
Forum: Fixing WordPress
In reply to: Change WP directory, no htaccess fileIt often depends on your ftp client as to whether or not you can see it with your other files.
I am not sure that each ftp client uses the same commands but try
-alwhere your mask function is and it should make the file visible.Forum: Your WordPress
In reply to: Links to external websitesNot 100% but I am sure it needs to sit between
<div id="menu"></div>and should have replaced
<?php wp_list_pages(); ?>Forum: Your WordPress
In reply to: Links to external websitesI don’t know where you put that code from above but it does not appear to be in your div menu area.
Forum: Your WordPress
In reply to: Links to external websitesI missed a closing
</li>at the end oftitle="About Me">About Me</a>But that shouldn’t stop it from working. What is NOT working exactly?
Forum: Themes and Templates
In reply to: can’t edit files — permissions…By default most theme are set to 644. To edit them online they need to be set at 777.
You can do this via your ftp client or any other method you choose.
To upload your images, you may also need to set your wp-content/uploads folder to 777 as well.
Forum: Your WordPress
In reply to: Links to external websitesYou probably have something similar to the following in your header.php file in your theme directory.
<?php wp_list_pages(); ?>You can do this in several ways but as you have minimal links, probably just as easy to opt forthe manual method and replace the above with something like this…
<ul>
<li class="first"><a href="http://www.wizzhack.co.uk">Home</a></li><li class="page_item"><a href="<?php bloginfo('url'); ?>/?page_id=4" title="About">About</a></li>
<li class="page_item"><a href="<?php bloginfo('url'); ?>/?page_id=3" title="About Me">About Me</a>
<li><a href="http://external-link.com">Video</a></li>
</ul>