Arras Wordpress Theme- 3 Question

Hi i have 3 qestion about Arras Wordpress theme:
1. How can I increase the width of the page i have empty space on the left and right :/
2. How change this arras icon? http://imageshack.us/photo/my-images/94/z09k.jpg/
3. How do this widget ? http://imageshack.us/photo/my-images/163/ojek.jpg/ Is it a script or something ?

1. You need to do that in the CSS Stylesheet
2. Looks like the favicon. You should have a "Theme Options" section under the appearance tab, and should be able to change it there.
3. This will also be in the code, somewhere. Try doing Ctrl-F and searching for ".widget" in the stylesheet and main index pages of your theme code.

If you don't know enough about WP theme code, hire someone on a freelance site for $5 to take care of it for you.
 
By default, in the css file, the width of the entire site is controlled by:

#wrapper {
min-width: 980px;
}

The width of full container part of the site is controlled by:

#main {
background: none repeat scroll 0 0 #FFFFFF;
margin: 0 auto;
max-width: 960px;
padding: 10px 10px 0;
}

It has further 2 parts:
i.) Main content area:

.twocol-r #container {
float: left;
width: 68.75%;
}


ii) Primary sidebar area:

.twocol-l .main-aside, .twocol-r .main-aside {
float: right;
width: 31.25%;
}

You need to change those green settings accordingly to have the actual widths you need.
 
Thank you srb888. it helped me :) If anyone give me code for this fake questionnaire i will be very grateful :)
 
Good to know that it helped! :)

I don't have that theme or I'd have investigated further...
 
Thank you srb888. it helped me :) If anyone give me code for this fake questionnaire i will be very grateful :)

What "fake questionnaire?

The one that goes like:

2013-08-23_2227.png
 
@UP
Yes, I'am searching for this.
 
Back
Top