nellynellynelly
Forum Replies Created
-
Forum: Themes and Templates
In reply to: New Themes Locationhttp://en.blog.wordpress.com/2013/04/25/twenty-thirteen/:
Self-hosted WordPress.org users will have access to the bundled theme with the official 3.6 software release, coming soon.
Forum: Fixing WordPress
In reply to: I cant link images to external sitesHi Rosemary,
The problem is that the link is being intercepted by the script that’s driving the pop-up image. It’s not immediately obvious to me though what is making it a pop-up, but you need to remove its pop-up behaviour.
Hope that helps a little..
~nForum: Fixing WordPress
In reply to: Background image is not showing…Hi,
Without looking into your code, it looks like it’s simply because the background is to the left and right of the content, so on a mobile device you don’t see the background as the content fills the width of the screen.~n
Forum: Plugins
In reply to: [Contact Form 7] Text alongside contact formTo explain further, something like this…
<div class=”text-block”>Text goes here</div>
<div class=”form-block”>Form goes here</div>Then in your stylesheet add this…
.text-block {
float: left;
width: 50%;
}
.form-block {
float: left;
width: 50%;
}Forum: Plugins
In reply to: [Contact Form 7] Text alongside contact formHi,
Do you mean that you want to have a separate block of text on the left and the form on the right, or that you want the field labels to be to the left of the fields?~n