Change dimentions of tables.

Use this forum to ask questions about how to do things in GuMax skin.
Post Reply
User avatar
TheT
Rank 1
Rank 1
Posts: 5
Joined: December 14th, 2007, 11:17 pm

Change dimentions of tables.

Post by TheT »

I am trying to make the logo table thiner and the border images tables thiner. How would i go about doing this because nothing has worked so far.

Thanks
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Change dimentions of tables.

Post by Paul »

Are you talking about the my skin? what version of my skin if you are?
User avatar
TheT
Rank 1
Rank 1
Posts: 5
Joined: December 14th, 2007, 11:17 pm

Re: Change dimentions of tables.

Post by TheT »

Sorry i should have explained myself better.

Yes i am using your theme (which is awsome) and i am using GuMax 3.2.1. I have replaced the header image with one of my own but i would like it to be much thiner (about 100px) so how can i resize the table which the header is contained in to about 100px.

Thanks :)
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Change dimentions of tables.

Post by Paul »

Are you trying to resize the width of the page? I'm not sure what type of table you are looking for.

If you try to resize the page width, it's in the file gumax_orange.css.
User avatar
TheT
Rank 1
Rank 1
Posts: 5
Joined: December 14th, 2007, 11:17 pm

Re: Change dimentions of tables.

Post by TheT »

What i am trying to resize is the box which the logo at the top is in because the default.jpg image (the standard one) is taller than my logo so i want to make the box which its in vertically thinner.
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Change dimentions of tables.

Post by Paul »

Open file gumax_template.css, and then find

Code: Select all

    #p-logo,
    #p-logo a,
    #p-logo a:hover {
        width:  180px;
        height: 72px;
    }
That's it!
User avatar
TheT
Rank 1
Rank 1
Posts: 5
Joined: December 14th, 2007, 11:17 pm

Re: Change dimentions of tables.

Post by TheT »

Unfortunatley it didnt work. Here i will give you a link. I want to make the header box less high. Then i will put a repeating image behind the logo.
User avatar
Paul
Development Team Leader
Development Team Leader
Posts: 1132
Joined: October 20th, 2007, 2:23 pm

Re: Change dimentions of tables.

Post by Paul »

ok, try this: find section below in the same file,

Code: Select all

    #gumax-site-logo,
    #gumax-site-logo a,
    #gumax-site-logo a:hover {
        /* border: 3px solid #99FF00;  /* testing */
        height:     148px;
        min-height: 148px; /* height of header */
        display: block;
        background-repeat: no-repeat;
        background-position: center center;
        text-decoration: none;
    }
Change both height, see what you can get.
Post Reply