HorrorUK
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Search posts/pages, but also custom fields?Thanks, the first one does the job well.
Forum: Fixing WordPress
In reply to: Custom Field shows up even if falseThanks, knowing that, I’ve been able to change things around and get it working
Forum: Fixing WordPress
In reply to: Custom Field shows up even if falseThanks for the help.
It is still showing up the text, though with your second line of code, it returns false.
Forum: Fixing WordPress
In reply to: Loop is causing white screenThanks, that got it sorted for me 🙂
Forum: Fixing WordPress
In reply to: menus appear behind video in IEI found the solution.
Anybody reading this with the same problem, just add this to the end of your embed code:
wmode="transparent"For example, you could have this as your embed code:
<object width="500" height="300"><param name="movie" value="http://www.youtube.com/v/xJjByxsgKXI?fs=1&hl=en_GB"></param><param name="allowFullScreen" value="true"></param><param name="allowscriptaccess" value="always"></param><embed src="http://www.youtube.com/v/xJjByxsgKXI?fs=1&hl=en_GB" type="application/x-shockwave-flash" allowscriptaccess="always" allowfullscreen="true" width="500" height="300" wmode="transparent"></embed></object>Notice
wmode="transparent"just before the</embed>command.Forum: Fixing WordPress
In reply to: Comment block text going across the screenthanks, that looks like a good alternative.
Forum: Fixing WordPress
In reply to: Comment block text going across the screenThanks :o) That should sort it.
Forum: Themes and Templates
In reply to: Custom theme breaks sidebar on some posts but not othersIt seems I may have found the little blighter. Adding
</div>to line 38 seems to have fixed it 🙂Forum: Fixing WordPress
In reply to: widgets move below main text when comments turned offThanks.
I’ve had a go at tryign to figure iut where it could be, but no luck :o(
Here is my link on pastebin.com
http://wordpress.pastebin.com/dSmY0CZ4Forum: Themes and Templates
In reply to: Custom theme breaks sidebar on some posts but not othersI am having exactly the same problem.
When comments is turned on, my widget appears on the right as it should do, but if comments are switched off, I get the widget appearing under the main content.
I’ve asked about ti here:
http://wordpress.org/support/topic/widgets-move-below-main-text-when-comments-turned-off?replies=3Forum: Fixing WordPress
In reply to: widgets move below main text when comments turned offThanks,
it isn’t a plugin causing the problem.
I’m sure it is a theme problem, I’m trying to write my own.
Forum: Fixing WordPress
In reply to: How to change widget text colour not in a text widgetThanks, I think I’d better stop trying to mess with css, nearly 5am here and the brain has stopped workign properly :o)
I go through that tomorrow
Forum: Fixing WordPress
In reply to: How to change widget text colour not in a text widgetI’ve placed them into the index file because I’m controlling everything from the admin, so the actual code for widget is:
.widget { color: <?php $widget_textcolour = get_option('widget_textcolour'); echo ($widget_textcolour); ?>; font-size: <?php $widget_fontsize= get_option('widget_fontsize'); echo ($widget_fontsize); ?>; text-align: <?php $widget_textalign= get_option('widget_textalign'); echo ($widget_textalign); ?>; }I put red into the code for the ul li as a test before I start messing with coding it all in. I’m not sure why it’s not showing up the colour as it should be (red at this time) or why the 4th November is showing up as black on the calendar.
Forum: Fixing WordPress
In reply to: How to change widget text colour not in a text widgetThanks
I have the #634baf part there, it’s just the black bits on the widget that refuse to change, even though I’ve tried various things (even asking them nicely).
I’ve set the theme up, so I can simply change the background colour if I get bored of white, but if I give it a dark background, I’ll need those black sections to do as their told.
Before I removed the bullets on the pages widget, it did have the colour I selected as the colour of the bullets.
Forum: Fixing WordPress
In reply to: Using divs for widgets in functions.php not workingok, that’s weird, I have come back to it and it is working.
Before it seemed to just bypass whatever was written there, but now it doesn’t :/