CSS Questions

Scythe's picture
Hey, guys. I'll delete this entry as soon as it has worn out its welcome, but I had two quick CSS-related questions. One, how does one go about deleting the name of an entry from the top of a given page? I know that I'm not wording this well, but such that it, (in this case CSS Questions), doesn't show up anywhere on the entry itself? And two, how does one code for text in which if you hover/mouse over a given word, a small box appears with additional text? Any help would be very much appreciated. Thank you.

Edit: Also, the Home › Blogs › username's blog on the upper right hand corner. Does anyone know how to get rid of that?
Hraeth's picture

To remove the blog tittle (I

To remove the blog tittle (I hope this is what you mean) the code is:

<style>h2{display:none}#squeeze h2:before{display:none}</style>

I'll check on the hover boxes.
Scythe's picture

That is. Thank you, Hraeth.

That is. Thank you, Hraeth. Smiling
Hraeth's picture

No problem~. The rollover

No problem~. The rollover follows something like this:

<a title="this is a test">testing</a>

You'll have to play with it, but I think it will follow what specifics you set for links, but I'm not certain. >u>
Scythe's picture

Awesomeness. Thanks a

Awesomeness. Thanks a lot.

One last question for you while I'm already being a bother. Taking out the title took out The Endless Forest and Scythe on my menu. This is probably a matter of some contradictory coding on my part, but is there any way to get those two items to stay while still removing the name of the entry?
Hraeth's picture

<style>#squeeze

<style>#squeeze h2:before{display:none}</style>

This should do it. The first h2 bit looked to be the culprit.
Scythe's picture

Still no good, (both the

Still no good, (both the title and the menu headings are back), but I'm still going to guess that it has something to do with contradictory coding on my part. I'll have to fiddle with it again later; I'm still rather new to this. XD;
Hraeth's picture

.breadcrumb{display:none;} S

.breadcrumb{display:none;}

Still working on that header. >C

Got it 8D

#squeeze h2{display:none}

These all go in the style commands, of course~.
Scythe's picture

Haha, awesome. Thank you so

Haha, awesome. Thank you so much for all of your help. Smiling