rjcreative
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: My Theme is causing white pagesI fixed it ! :P. Anywayz when i turned on the error reporting i was getting this error,
Warning: Cannot modify header information - headers already sent by(url of some file)
after some googling i found out that i had left a space behind my php closing tag. Apparently 1 simple space can cause a fatal error :/
Forum: Themes and Templates
In reply to: yet another constructor question.Your comments link does not a have a class tag. So you can’t style it diffrently from the rest of the links
to fix this you need to make some changes in the php files of your theme. Most likely index.php and maybe page.php. change the comments link to:
<a class="comments" href="<?php comments_link(); ?>"> Comments to this post </a>
You can then style it seperately using css
a.comments { font-size: 14px; }
Looks professional, just a bit unclear to me when i first entered the website. What exactly do you ppl do?
Also the site looks a bit bland. Nothing really stands out. Just a blur information. Monotone colors might have something to do with it. Don’t know about the theme’s functionality but maybe you can add the green from the logo somewhere on the website. Giving it a more personal touch.
Forum: Themes and Templates
In reply to: Commentformthis bit of code is probably the cause your white background
#content p{ background: #FFFFFF; padding: 0px 0px 10px 0px; margin: 0px; line-height: 20px; }
Also this should make your other form inputs purple.
#commentsform input{ background: #DAC5E2; }
Forum: Themes and Templates
In reply to: CommentformNot sure i understand what your trying to do, You want the background of the forms purple?
Forum: Themes and Templates
In reply to: Video and audio theme – nice design?themeforest.net is usually a great resource for awesome wordpress themes
Think this one might work for your website
Forum: Themes and Templates
In reply to: Width of themetry removing the clear in your nggallery.css
.ngg-galleryoverview { overflow: hidden; margin-top: 10px; width: 100%; <strong>clear:both; </strong> display:block !important; }
.ngg-navigation { font-size:0.9em !important; <strong>clear:both !important;</strong> display:block !important; padding-top:15px; text-align:center; }
There is one more in that file but these 2 seem most likely for causing the problem.
Forum: Themes and Templates
In reply to: Width of themeThere also was a
<div class="clear-npg>
or something like that in your source. Since you loaded 4 css files it was a bit hard to tell where the clear: was hiding.Good to know you got it working though ??
Forum: Themes and Templates
In reply to: Width of themeLooks a bit like theres a
clear: both;
orclear: left;
somewhere in there.