blocking part of formatting of css class

Posting here is no longer possible, please use the forum of a filter list project, such as EasyList
Locked
harvald
Posts: 2
Joined: Thu Aug 07, 2008 1:46 pm

blocking part of formatting of css class

Post by harvald »

Hi. I have this problem.
http://download.chip.pl/index/download_index_1214.html

Site have 3 columns. Useful is only left begining with "Download - polecamy". I blocked "Polecamy" and "Reklama", but remains empty space. I figured out that responsible is #box-important selector from css file
http://www.chip.pl/css_rk/index.css
My question is how to block only "width:612px;" of this selector? Or how to resize first column of page in other way?
User avatar
rick752
Posts: 2709
Joined: Fri Jun 09, 2006 7:59 pm
Location: New York USA
Contact:

Post by rick752 »

You cannot.
If you block the width, you will also block the content.

You need a program to 'modify' css ... ABP only can "remove" it.

Stylish and Greasemonkey should be able to do what you want. ABP cannot change a "defined" dimension of anything.
User avatar
Adblock Plus Fan
Posts: 1255
Joined: Sat Feb 24, 2007 11:08 am

Re: blocking part of formatting of css class

Post by Adblock Plus Fan »

harvald wrote:Or how to resize first column of page in other way?
Install Stylish extension.

Then use this code:

Code: Select all

@namespace url(http://www.w3.org/1999/xhtml);

@-moz-document domain("chip.pl") {
 #box-important {
  width:99% !important
 }
}
Adjust the percentage to however you wish.
harvald
Posts: 2
Joined: Thu Aug 07, 2008 1:46 pm

Post by harvald »

Many thanks ;)
Locked