Google quicksearch plug-in

Creating and modifying plugins.
wesley
Regular
Posts: 197
Joined: Sun Jul 10, 2005 11:15 am
Contact:

Post by wesley »

Well, the Spartacus problem was found to be a server problem. I checked
with garvin about the issue and the NetMirror account was found to be
broken. I guess we can expect this to be resolved soon.

As for the stretching, I didn't specify any width information on the plugin
itself. The text input box has maxlength specified to 255, but that's used
to limit the number of characters that the user can input, and has nothing
to do with actual width of the box.

Does the stretching occur without the button, though?
I make s9y plugins, too.
My s9y blog depends on them. :)
Wizard
Regular
Posts: 103
Joined: Sat Aug 13, 2005 7:18 am
Location: Southern California
Contact:

Sidebar width...

Post by Wizard »

The stretching was also before the button, but not as much. It increased just slightly, maybe a 1/16 of an inch. Just enough to make some images I had aligned in an entry to stack so that's how I noticed it. As I said, it's not too big of a deal, I moved it to the other side where it is wider because of the calendar plugin. This brings up a question though. Is it possible to define the width of the sidebars?
Wizard
My WeBlog
wesley
Regular
Posts: 197
Joined: Sun Jul 10, 2005 11:15 am
Contact:

Post by wesley »

I defined the width using the theme's style.css on my website.
.serendipitySideBarContent input {
width: 150px;
}
This basically set the input boxes on the sidebar to 150 pixels by default.
I make s9y plugins, too.
My s9y blog depends on them. :)
Wizard
Regular
Posts: 103
Joined: Sat Aug 13, 2005 7:18 am
Location: Southern California
Contact:

Thanks...

Post by Wizard »

You hit a home run Wesley! My custom theme did not have that entry in my style.css. Once I put that in (changed to 100px however) everything was back to normal. Thanks again!

Update...

I removed that entry (since it made the Go button larger as well and changed a different value in the same file.

Code: Select all

#serendipityLeftSideBar,
#serendipityRightSideBar {
  display: block;
  padding: 10px;
  width: 13em;
  vertical-align: top;
}
By changing the width value I was able to effect just the size of the sidebar separately.
Wizard
My WeBlog
MySchizoBuddy
Regular
Posts: 340
Joined: Sun Jun 12, 2005 5:28 am

Post by MySchizoBuddy »

Any idea how to make it look like the gogole search toolbar in safari
http://www.apple.com/macosx/features/safari/
Image
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

Yes, you can do that with CSS background-image specifications.

There are several sites out there who imitate that look via CSS...maybe you can find some of those pages.

Regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
MySchizoBuddy
Regular
Posts: 340
Joined: Sun Jun 12, 2005 5:28 am

Post by MySchizoBuddy »

ok one more thing How do i get ride of "Google the site" text. I want to remove it o i push the search thing on my header.
Image
garvinhicking
Core Developer
Posts: 30022
Joined: Tue Sep 16, 2003 9:45 pm
Location: Cologne, Germany
Contact:

Post by garvinhicking »

MSB, I think for that you need to modify the plugin PHP file...

Best regards,
Garvin
# Garvin Hicking (s9y Developer)
# Did I help you? Consider making me happy: http://wishes.garv.in/
# or use my PayPal account "paypal {at} supergarv (dot) de"
# My "other" hobby: http://flickr.garv.in/
Post Reply