[wp-meta] [Making WordPress.org] #6196: Plugin display on profile page
Making WordPress.org
noreply at wordpress.org
Wed Mar 16 12:55:34 UTC 2022
#6196: Plugin display on profile page
--------------------------+--------------------
Reporter: anand.au14 | Owner: (none)
Type: defect (bug) | Status: new
Priority: normal | Milestone:
Component: Profiles | Keywords:
--------------------------+--------------------
Hi
On the plugin developer's profile page, earlier plugins were displayed in
3 columns.
But now it is displaying them in 2 columns leaving a lot of blank space on
the right.
How it was earlier
http://web.archive.org/web/20220126191027/https://profiles.wordpress.org/wpvibes
/#content-plugins
I looked into it a little and found that some recent CSS changes have
caused this.
Changing width in the following CSS code can fix this
**Current code** (style.css:59)
{{{
#main-column {
float: left;
width: calc( 100% - 210px );
margin-left: -2px;
min-height: 133px;
font-size: 1.4em;
border-top: 2px solid #eee;
border-left: 2px solid #eee;
}
}}}
Replace with (only width property changed)
{{{
#main-column {
float: left;
width: calc( 100% - 175px );
margin-left: -2px;
min-height: 133px;
font-size: 1.4em;
border-top: 2px solid #eee;
border-left: 2px solid #eee;
}
}}}
Not sure where else this change can affect the site.
--
Ticket URL: <https://meta.trac.wordpress.org/ticket/6196>
Making WordPress.org <https://meta.trac.wordpress.org/>
Making WordPress.org
More information about the wp-meta
mailing list