conor909
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Page height in reference to length of wp-post ?I have resolved this issue. Thanks to everyone for replying. If you want to see my simple fix, visit my other post here..
So after weeks of scratching my head and posting on forums I found out the cause of my pain. This might come across as a stupid mistake to people who know there sh!t. But for us new comers who know a little bit of a lot of things and not enough on anything, here is where I went wrong..
Never use
{position:absolute;}
when styling your individual posts. I hope this saves some other new comers time! ..things are simple when you know how.Forum: Fixing WordPress
In reply to: Changing the blog URLYes that was it, I was looking in my themes index.php. Working now!
Thanks govpatel, voodoo and t-p for taking the time to reply!
much appreciated
CForum: Fixing WordPress
In reply to: Changing the blog URLHere is my index.php code
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.1//EN" "https://www.w3.org/TR/xhtml11/DTD/xhtml11.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" <?php language_attributes() ?>> <head profile="https://gmpg.org/xfn/11"> <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> <meta http-equiv="Content-Type" content="text/html; charset=UTF-8" /> <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen,projection" /> <?php wp_head(); ?> </head> <body> <div id="wrapper"> <?php get_header(); ?> <div id="content"> <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) == 0) : $wp_query->next_post(); else : the_post(); ?> <div id="left-column"> <div class="postl" id="post-<?php the_ID(); ?>"><h2><?php the_title(); ?></h2> <?php the_content(); ?> </div> </div> <?php endif; endwhile; else: ?> <div>Alternate content</div> <?php endif; ?> <?php $i = 0; rewind_posts(); ?> <?php if (have_posts()) : while(have_posts()) : $i++; if(($i % 2) !== 0) : $wp_query->next_post(); else : the_post(); ?> <div id="right-column"> <div class="postr" id="post-<?php the_ID(); ?>"><?php the_title(); ?> <?php the_content(); ?> </div> <?php endif; endwhile; else: ?> <div>Alternate content</div> <?php endif; ?> </div> </div> <?php get_footer(); ?> </div> </body></html>
Forum: Fixing WordPress
In reply to: Changing the blog URLhere is a link to my blog, i honestly cant find the require(‘url’); anywhere yet people are telling me wordpress cant work with out it?
Here is a link to my site https://www.flexhk.com/wordpress
please help! its my first wp site so sorry if some of my questions are stupid..
Thanks!
Forum: Fixing WordPress
In reply to: Changing the blog URLThanks for the quick replys!!
I have tried both those links already, my problem is I have turned on “Show hidden files” in FileZilla and still have no .htaccess. I have got a .htpasswds if thats worth anything?
the “require(‘./wp-blog-header.php’);” is not in my index.php, on line 17 i have a </div>
..i realize im missing something here? what index.php are you talking about?
Forum: Fixing WordPress
In reply to: where IS my .htaccess file?Im new to all this, do I upload a blank .txt file and name it .htaccess? Or do I make a folder called .htaccess?
Thanks!
Does anyone else have any input on this one? Im completely dry on ideas now.
Hi alchymythm,
thanks very much for your reply and taking the time to help!
iv cleaned it up as much as i can, yet according to the validation website, im coming up with errors. I think i have sorted out my div’s and multiple body tag situation, but brackets and inverted commas now crop up as errors when I see no problem with them..
its my first wordpress website so im no expert, but after trawling the internet for weeks im totally out of ideas, any suggestions would be very much appreciated!
thanks again
CHi,
I’d like to restart a discussion on this topic, as Iv been trying to fix this problem for weeks now! Does anyone know what I can do to make the page height adjust to my content. The thmeme I am using is Typography-Paramount.
Changing themes is not really an option, as Im coming to the end of the project now. Here is a link to the site..
https://www.flexhk.com/wordpress
I can supply any code or page you may need, I am desperate to fix this problem, somebody please help !
Forum: Themes and Templates
In reply to: Why cant I delete the themes folder using FTP ?cyberduck give a “file in use by another process” message.
But I have no idea what else could be using the file..
Hi Jobmeer, I really appreciate your reply, unfortunately that just sends the footer right up to the header hiding under the content..
It seems my header, index and footer, don’t recognize that there is wordpress content there at all..
Forum: Themes and Templates
In reply to: Vertical aligned images in posts causing overflowing?Ah ok I had the Index header code in all my .php files, including header.php and footer.php
Thanks for the advice!
Forum: Themes and Templates
In reply to: Vertical aligned images in posts causing overflowing?Thanks for your reply’s cubecolour
ok, thats strange. I only have one get_header tag in the Index.php. I dont know why thats happening. This is my first wordpress theme so im a an amateur. Any help would be appreciated.
For the height, if I take out the [code]height:1250px;[/code] from #content, the footer jumps right up under my header, and the posts overflow on top..
Im confused!
Forum: Themes and Templates
In reply to: Vertical aligned images in posts causing overflowing?[SOLVED!] massive thanks to you cubecolour!
One thing though, the page height of my website is static, as my html cant see the end of my posts, so they over flow when adding posts with long info.. Do you know how to get the page height working with the end of the posts?