wp-21
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: The problem with thumbnail imagesyeah i can have a look at it…or you can use pastebin.com/ also…
Cheers..:)
Forum: Fixing WordPress
In reply to: The problem with thumbnail imagesare you using a plugin for that slideshow.
If yes then you have to check the plugin files.Forum: Fixing WordPress
In reply to: Post title link does not work in search resultYou might have to look up the code in content.php
yeah i checked,…and found out the problem is the width set on the container divs on the line 62 and 56
you have to increase the width for the line 62 and decrease the width for the line 56 like this:line 56 becomes this:
div.col3 { width: 145px; }line 62 becomes this:
div.col5 { width: 571px; }ok
i’ll check it.i meant this code
#main #content .post-img a { width:130px; height:130px; overflow:hidden; display:block; padding:5px; background-color:#fff; border:1px solid #bbb; }the width that you have set above.You can use pastebin to post your html and css for the mentioned page.It would be helpful.
without the codde it would be difficult to sort out the problemForum: Fixing WordPress
In reply to: Header Imagepls clear your cache..it appears to be bigger on my end.
Forum: Themes and Templates
In reply to: Contact Form 7: Style Issuecheers..:)
Forum: Fixing WordPress
In reply to: The problem with thumbnail imagesYou can use similar path as for your big image for the thumbnails also.
Or you might have to edit the files where the path is coded.Forum: Fixing WordPress
In reply to: The problem with thumbnail imagescurrently the path being generated for one of your thumbnails is this:
and for the corresponding full image is this:
http://garageart.cz/wp-content/uploads/2013/06/image8-1024×764.jpg
the path for the thumbnail seems to be wrong
Forum: Themes and Templates
In reply to: Mail and Facebook-link in new footertext Twenty ElevenThe color code you are looking for is
#1982D1Forum: Themes and Templates
In reply to: Contact Form 7: Style IssueIn your style.css file on line 208 you have:
input[type="text"],input[type="password"], textarea { background: none repeat scroll 0 0 #FCFCFC; border: 1px solid #EEEEEE; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.05) inset; color: #999999; font-family: "Droid Sans",sans-serif; font-size: 13px; padding: 1.5%; }you just need to add
input[type="email"]in between this like:input[type="text"],input[type="email"],input[type="password"], textarea { background: none repeat scroll 0 0 #FCFCFC; border: 1px solid #EEEEEE; box-shadow: 1px 1px 5px rgba(0, 0, 0, 0.05) inset; color: #999999; font-family: "Droid Sans",sans-serif; font-size: 13px; padding: 1.5%; }that will style your email field also similar to the others.
Forum: Themes and Templates
In reply to: Twentytwelve Theme – primary div 100% widthPls post the link to your site.
Forum: Themes and Templates
In reply to: Contact Form 7: Style IssueHi,
Its’simple as you have styled other input types as visible from the line 208 in your style.cssthe one field that you are talking about is input[type=”email”]
which you have to add to the 208th line like the rest to have it styled like the other fields, currently there is no style definition for that so its appearing as it is now.