News:

Want to get involved in developing SMF, then why not lend a hand on our github!

Main Menu

re-size theme

Started by Kurakama, May 29, 2010, 03:40:33 PM

Previous topic - Next topic

Kurakama

Hello there!

I am using this theme: EDIT

and looks like this:


and I would like to do is something like this one:

http://www.url-has-been-edited.com/

the width is smaller than mine

any help is appreciated

thank you!

Costa

Attach your index.css please.

-Costa
Hugo "Costa" Fernandes - PT SMF
Todas as MP's a pedir ajuda são sujeitas a radioactividade, microondas, queimadas e atiradas borda fora.

"At least someone appreciates the fact that I am doing and not thinking..."
"Laziness is counter-revolutionary."

Kurakama

Here you are.

thank for the advance!

kat

Find this from, line 1333:


#main_content_section
{
   width: 100%;
   min-height: 200px;
}


Change "width: 100%" to whatever you want.



That's if I've understood you, correctly.

Kurakama

Quote from: K@t on May 29, 2010, 04:26:55 PM
Find this from, line 1333:


#main_content_section
{
   width: 100%;
   min-height: 200px;
}


Change "width: 100%" to whatever you want.



That's if I've understood you, correctly.

I did, I put "width: 100%;"  by "width: 50%;" and it did not change the width

:(

kat


Kays

If you are using 2.0 you should be able to adjust the width in the Admin CP > Current Theme. It should be one of the first options there.

If at first you don't succeed, use a bigger hammer. If that fails, read the manual.
My Mods

Costa

Kays is right, however...

Code (Find) Select

/* Set a fontsize that will look the same in all browsers. */
body
{
background: #6ABDCC url(../images/img/bgr.gif) repeat-x;
font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
margin: 0;
padding: 12px 0 4px 0;
}


Code (Replace with) Select

/* Set a fontsize that will look the same in all browsers. */
body
{
width: 100%;
background: #6ABDCC url(../images/img/bgr.gif) repeat-x;
font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
margin: 0;
padding: 12px 0 4px 0;
}


-Costa
Hugo "Costa" Fernandes - PT SMF
Todas as MP's a pedir ajuda são sujeitas a radioactividade, microondas, queimadas e atiradas borda fora.

"At least someone appreciates the fact that I am doing and not thinking..."
"Laziness is counter-revolutionary."

Kurakama

Quote from: Costa on May 29, 2010, 05:29:20 PM
Kays is right, however...

Code (Find) Select

/* Set a fontsize that will look the same in all browsers. */
body
{
background: #6ABDCC url(../images/img/bgr.gif) repeat-x;
font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
margin: 0;
padding: 12px 0 4px 0;
}


Code (Replace with) Select

/* Set a fontsize that will look the same in all browsers. */
body
{
width: 100%;
background: #6ABDCC url(../images/img/bgr.gif) repeat-x;
font: 78%/130% "Verdana", "Arial", "Helvetica", sans-serif;
margin: 0;
padding: 12px 0 4px 0;
}


-Costa

No. it does not work.

but... Kays is right lol!

thanks very much Kays ^^

and Costa and K@t

Resolved!

kat


Advertisement: