Site Message

It's time to clean up the dust on site

21/9 - ok its been 3 months and 20 days since i login to wp-admin panel and it is dusty now...hehe....catch the latest post to know some future progress

42 users Commented In " Wordpress Theme - Bobbles "

May 16th 2007 at @12:07 am  

let me know if there’s any bug ok..:)

May 16th 2007 at @3:05 am  

First off another great theme thank you very much. I haven’t come across any bugs thus far, but I did notice a spelling error (forgive me for being picky). In the footer you have the link to the rss feed as “Subsribes” but I think it should be “Subscribe”

May 16th 2007 at @4:15 am  

Found a bug. In single.php in the similar topics area just above the comments, when you hover the mouse over one of the links it is showing the_excerpt() from the post you are viewing and not the_excerpt() from the post it is linking to.

May 16th 2007 at @7:28 am  

thanks jon holato for the bug note..:)
yes..the grammar kind of screwup..will be careful next time..but i still can’t find the second bug you mention..where exactly is it?

forgive me for being picky

no..that’s just want i need from theme user/critics..as a coder..i always want to make the theme lesser bug as possible…so thanks again and i’ll see what can do with the bug above..:)

May 16th 2007 at @11:46 am  

No problem, I greatly enjoy your themes so I’m happy to help whenever I can. As for the second bug, I don’t know if you found it or not but I have sent you the code via your contact form. Hope that helps!

May 17th 2007 at @5:42 am  

Awesome!!!

May 17th 2007 at @6:07 pm  

thanks jon..i got your mail and take a look and yes..the excerpt field didn’t show each post excerpt rather than the latest only..i’ll see if i can fixed it..:)

cool eRay…drop by again sometime ok..:)

May 19th 2007 at @8:08 am  

hey richie i put together a fix for the excerpt on anchor titles bug in single.php, still sorting it out but so far it works, will post the code soon…

May 19th 2007 at @8:38 am  

hurrah!
thanks Jon…i still unable to get the fixed and if you got the solution..that’ll be great..let me know if you can fixed it ok..appreciated..

May 19th 2007 at @8:51 am  

Alright I think I got it working well. I didn’t want to post a 674px width image in your comments and kill your layout, so I have posted a screen shot of the code and instructions on how to fix it on my blog. But please feel free to take whatever you want and add it here. :)

Bobbles Similiar Topics Bug Fix

May 19th 2007 at @3:35 pm  

Thank you very much, Jon
I edit the single page as you noted and it works wonder…
I already updated the download link for fix version
so anyone who wanted a update fixed can redownload the theme from the main topic.
Thanks again to Jon quick fixed on the theme…:)

aramis
May 21st 2007 at @5:02 pm  

hi there!
great, great theme!
just what I was looking for.
but there’s a problem…I’m not an expert in programing language and I want to change the size of the theme width, but I have never seen a theme with a style.css so large.
:P
Can anyone help me how to resize the theme to fit in a 1024×768 resolution, please?
thanks!
and keep up the good work!!!

May 22nd 2007 at @2:48 am  

Nice theme. It’s very slick.

May 22nd 2007 at @8:28 am  

thanks aramis and cody…:-)

sorry about that aramis…when i started the design sketch to coding i already set the width for the design at 1000px so changes are likely minimal..maybe my target users are at 1280 higher res.

i check on the net a while back and got an info from one of requester of mine and said the most suitable width for 1024×768 res users would be a theme/design that only range from 900 - 960px.

I’ll try to set the default design width at 900-960px in my next release..ok

:P

May 22nd 2007 at @9:17 am  

Nice theme!

May 23rd 2007 at @9:52 pm  

thanks admin.
kind of weird going for that name..don’tcha think :P

May 24th 2007 at @1:18 pm  

So Good~
But it seems have a little problem in 1024×768, and it will display scrollbar in the bottom of the browser, maybe it’s too wide :lol:

May 25th 2007 at @7:43 am  

yes inso
that problem did occured when i test it with a 1024 res
since the theme body is at 1000+px..i don’t think it can handle a lower res…will note that point in my next theme release..thanks

May 26th 2007 at @2:06 pm  

Hi there.
For some reason the PAGES navigation at the bottom is not showing.Any ideas why ? The url is http://www.blog.littledirtypleasures.com
Thanks

May 26th 2007 at @4:31 pm  

yes..Little Dirty Pleasures
you need the page-nav plugin for it to display
you can download the plugin here

just download and extract it and upload to the wp plugin folder and activate it..easy job

:P

June 18th 2007 at @12:28 am  

I am using your theme and it is awsome, everyone like it here. But i have a little problem. I want to show comments and can do comment to static pages. I add comments_template to page.php.Now old comments are shown but we cant add comments. What should i add comment.php or elsewhere?

June 18th 2007 at @12:38 am  

Ok, please forget about my previous comment. It is working very well now :)

June 18th 2007 at @10:37 am  

no problems :D
i guess you forgot to enable comment and pingback in config or when
write the post page.
checkback on me again if you encounter any problems ok..

July 20th 2007 at @2:06 pm  

Great theme! I’m having a little problem with the image/text wrap.

When I add an image in my post, the theme css floats it to the left with a nice margin all around. I like that!

However, when there is a paragraph tag (generated by wordpress) the text shifts down to under the image leaving an awkward blank space.

How can I fix this?

July 21st 2007 at @1:37 am  

helo Andrej..thanks..glad you enjoy the theme ;)
ok as for your problems..open the style.css and find this line:

.post_content img {
	float: left;
	margin-top: 5px;
	margin-right: 8px;
	margin-bottom: 0px;
	margin-left: 2px;
	padding: 0px;
	border: 4px solid #333333;
}

/* add this line in the style */

img.alignleft {
	float: left;
	margin-top: 5px;
	margin-right: 5px;
	margin-bottom: 2px;
}

img.alignright {
	float: right;
	margin: 5px 10px 2px 8px;
}

img.aligncenter {
display: block;
margin-top: 0px;
margin-right: auto;
margin-bottom: 4px;
margin-left: auto;
clear: both;
}

delete the float:left in the post-content img and delete the border incase you don’t need it..and of coz you need to set the classes for the images that you need to be in right or left :cool:

cococorp
November 24th 2007 at @7:58 am  

hi first your themes are amazing very gloss i like them
i have a probleme with this one.this is the first time i’ll do that with a blogger blog and the error message is this one: Votre modèle ne peut pas être analysé, car sa structure n’est pas conforme. Vérifiez que tous les éléments XML sont bien fermés.
Message d’erreur XML : Content is not allowed in prolog.
sorry for my bad english thank’s for your help men!
if you can answer me on me email adress it will be very nice from your part.

February 14th 2008 at @11:11 pm  

Beautiful theme, thank you very much. I am having an issue with visitor’s not being able to leave comments. Keep getting the message “sorry the comment area are closed”. Any instructions or updates on how to correct this. Thank you in advance.

April 25th 2008 at @12:16 am  

The right hand sidebars are messed up. The whole page stretches to far to the right and the calendar/archives/recent comments sections are overlapping and look a mess. Otherwise the theme is very cool.

September 1st 2008 at @4:37 am  

Beautiful theme, thank you very much.

October 9th 2008 at @10:51 pm  

Great theme, specially the buttons used in theme.

Pingback And Trackback
O meu blog » Tema traduzido - May 21st 2007 in 10:00 pm  
Clazh - May 30th 2007 in 4:41 pm  
Seven WordPress Themes | Sharelor - August 30th 2007 in 6:43 pm  

Related Post

Subscribe without commenting