PDA

View Full Version : changing Width of description field for adding list



Mohamed Husain
July 8, 2012, 05:31 PM
Hi,

I am having a problem that width of description field is taking more than the width of the page.

Kindly advise how we can change it.

Regards,

Petrache Nicolae
July 8, 2012, 08:59 PM
a link to that page so we can help?

Mohamed Husain
July 9, 2012, 03:32 PM
below is the link

http://safqati.com/en/add-listing/books/fill-out-a-form.html

Petrache Nicolae
July 9, 2012, 05:27 PM
95
below is the link

http://safqati.com/en/add-listing/books/fill-out-a-form.html

your description is fine -see image.
your page is splited in 3 sections: left side, middle and right side. if you want to have a longer area for the middle than you need to disable right side or move the box "Mobile Version" to left side

Chris Brown
July 9, 2012, 05:50 PM
95

your description is fine -see image.
your page is splited in 3 sections: left side, middle and right side. if you want to have a longer area for the middle than you need to disable right side or move the box "Mobile Version" to left side

Think he means the page after price plan, the description box is massive

Petrache Nicolae
July 9, 2012, 07:51 PM
ok. i gues you have made some modifications that produced unwanted results or, most likely, the right column box is causing this (try to disable right column and/or move it.s content to left side )
you can apply for now the following settings but consider to sybmit a ticket to flynax.

1.go to your theme/css/common.css (line 485) and add there width: 680px;
should look like this

div#content div#controller_area {
padding: 0 0 10px;
width: 680px;
}
2.go to your theme/css/styles.css (line 1417) and there delete !important from .wauto so in the end you will have width: auto;


.wauto {
width: auto !important;
}

that should work at least on that page -remains to be sean how will work on the rest of the pages
9697

Petrache Nicolae
July 9, 2012, 07:52 PM
ok. i gues you have made some modifications that produced unwanted results or, most likely, the right column box is causing this (try to disable right column and/or move it.s content to left side )
you can apply for now the following settings but consider to sybmit a ticket to flynax.

1.go to your theme/css/common.css (line 485) and add there width: 680px;
should look like this

div#content div#controller_area {
padding: 0 0 10px;
width: 680px;
}
2.go to your theme/css/styles.css (line 1417) and there delete !important from .wauto so in the end you will have width: auto;


.wauto {
width: auto;
}

that should work at least on that page -remains to be sean how will work on the rest of the pages
9697

John
July 10, 2012, 08:01 AM
Hello Guys,
To solve the problem you just have to remove .wauto {...} style from the css file.
John

Mohamed Husain
July 14, 2012, 06:04 AM
Thank you Petrache,

It is working fine now.