Robin
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Sidebar moves downhi
you would have to find the page from which your single post is generated in your theme and as from firebugging your website i could see that<div class=”span-8 last”>
is nested under <div class=”span-16″>
(span-16 class contains your main content-body)
(span-8 class contains your sidebar)which is causing the sidebar to shift down
Forum: Fixing WordPress
In reply to: Sidebar moves downas jan said this forum is for supporting GPL themes, since you bought a paid theme you it would be idle to contact the theme developer as i see on there demo it works perfectly
Forum: Fixing WordPress
In reply to: Sidebar moves downdid you check your code from archive or other pages which are working fine, compare both the files
Forum: Fixing WordPress
In reply to: Sidebar moves downplease paste it using pastebin its hard to even see it like this
Forum: Fixing WordPress
In reply to: Sidebar moves downor you can contact theme developers and report a bug issue
Forum: Fixing WordPress
In reply to: Sidebar moves downkeep a backup of your files,
and for your single post page (usually its single.php) but i dont know how your theme is structured.
you just have correct the closing of the div
and make sure that div class=”span-8″ is not nested under <div class=”span-16″>
refer to the code to your archive page or any other page you mentioned which are working fine.Forum: Fixing WordPress
In reply to: CSS changes appear in Opera Browser but not Firefoxcheers
Forum: Fixing WordPress
In reply to: HTTP Error 500 resulting in white page on front endGlad to know
cheersForum: Fixing WordPress
In reply to: HTTP Error 500 resulting in white page on front endwp_debug is a function in your wp-config.php
it is false by defaultForum: Fixing WordPress
In reply to: HTTP Error 500 resulting in white page on front endTry reverting to some other theme from your ftp and see if the problem still persist, alternatively you can make wp_debug to true, to see actual errors
Did you migrate from your localhost to a server ?Forum: Fixing WordPress
In reply to: HTTP Error 500 resulting in white page on front enddid you try reverting back to twentyten theme
Forum: Fixing WordPress
In reply to: Sidebar moves downThis is happening because of how your code is structured
on your single post page
<div class=”span-8 last”>
is nested under <div class=”span-16″>
(span-16 class contains your main content-body)
(span-8 class contains your sidebar)where as on your main page it they are not nested which allows your sidebar to easily float on right side
you would have to structure the single post page correctlyForum: Fixing WordPress
In reply to: Line break in title of post — not a web pagein above code you could specify width
.your-title-class
{
width:100px;
word-wrap: break-word;
}
wrap:and if you want to implement it in more dynamic way
there is a php code for itForum: Fixing WordPress
In reply to: Line break in title of post — not a web pagefound this cool tutorial on word-wrap which should solve your problem and you wont need to put html tag in your title
.your-title-class {
word-wrap: break-word;
}
http://webdesignerwall.com/tutorials/word-wrap-force-text-to-wrapForum: Fixing WordPress
In reply to: CSS changes appear in Opera Browser but not Firefoxfor the time being i see background color as black and size as 19pt for all the three browser
so as per your original question of the css not updating, it looks fine to me.