Style Change Help

As you can see on the title of my gallery one of the words has moved to the second row. There is obvious room before the text hits the search box so I'm hoping to have all the text on the same row. This is what I've found for the gallery title CSS:

#gallerytitle {
padding: 10px 10px 10px 20px;
-moz-border-radius-topleft: 10px;
-moz-border-radius-topright: 10px;
background: #F8F8F8;
height:30px;
border-bottom: 1px solid #CCC;

What would I change there (if that is indeed the part that needs to be changed) to get the desired effect?

Here is the site where you can see the gallery title issue: www.chinamash.com

Comments

  • I found the culprit. Since my CSS is shaky I was wondering if someone here could check to make sure I've modified the code correctly so there aren't any errors. I had to set a width to auto:

    `
    h2 {
    font-size: 1.5em;
    letter-spacing: 0.4pt;
    color: #666;
    text-transform: uppercase;
    padding:0;
    margin:0;
    width:auto;
    float:left;
    }
    `
Sign In or Register to comment.