Hello experts,

i'm newbie to the drupal I'm trying to modify a theme multiflex3 1.1. this is I'm customizing
1. In this theme margin is set up. i'm trying to remove the margin from left and right side can you please help me out. how do i do this.

2. I want the left hand side tool bar to be in right side.

Please help me

Comments

mityok’s picture

Open your theme CSS file (sites/all/themes/multiflex3/style.css),
find the declaration:

#wrapper #container {
max-width: 1240px;
margin: 0 auto;
padding: 0 10px;
}

Try to change the padding to:

padding:0 10px;

this should help.

As about changing the leftbar to rightbar - open site administration - construction - blocks and change the blocks placing from left column to right column region.

--
My blog (in russian) www.veldv.info

mak1084’s picture

hey thanks for reply,
my problem is solved but not by changing the padding:0 10px;.
I tried this but i failed so i removed the whole content of the #wrapper #container { } and made it epmty now its showing as i wanted.
thanks again. for helping me.

mityok’s picture

Sorry, I forgot to change the values for padding property

instead of

padding:0 10px;

it should be

padding:0 0;

--
My blog (in russian) www.veldv.info

mak1084’s picture

hey can you please tell me how do I change the top margin to 0.
now my value is

#wrapper #container {
width: 100%;
height: 100%;
padding: 0 0;
}

what should i do to make the top margin 0.

thanks in advance.

mityok’s picture

Install Firefox and "Web Developer" + "View formatted source" extensions - this tools will help you to detect the element with a top margin.

--
My blog (in russian) www.veldv.info