Sal Ferrarello

Results 85 issues of Sal Ferrarello

@atcraigwatson is doing lots of cool things with Bootstrap Genesis One thing that looks particularly good is the use of the Bootstrap panel component style for widgets and widget titles....

@atcraigwatson is adding styles for tag clouds and post counts using the `.badge` class in [his fork](https://github.com/atcraigwatson/bootstrap-genesis/commit/12d697dbc6a8547980215c7e456c59f5bf223496) ![screenshot 2018-02-20 12 57 46](https://user-images.githubusercontent.com/5194588/36440444-ac876542-163d-11e8-8183-9968ad2a4376.png) These are being added with [str_replace()](http://php.net/manual/en/function.str-replace.php). Using `str_replace()`...

Refer to: - [WordPress PHP Coding Standards > Indentation](https://make.wordpress.org/core/handbook/coding-standards/php/#indentation) - [WordPress CSS Coding Standards > Structure](https://make.wordpress.org/core/handbook/coding-standards/css/#structure)

enhancement

Make class `container-fluid` on nav filterable in `lib/nav.php` @atcraigwatson is doing some awesome work with the customizer and changing some of the nav options. Typically, my use-case for this theme...

Perhaps a period or a vertical bar ![image](https://cloud.githubusercontent.com/assets/5194588/9594291/49efe15e-5027-11e5-89b2-967b1a4204fb.png)

Hacktoberfest

http://blog.getbootstrap.com/2016/07/25/bootstrap-3-3-7-released/

where num_cols is an integer like (2, 3, or 4) http://my.studiopress.com/tutorials/add-footer-widgets/ (Requires Studiopress Membership)

enhancement

I'd much prefer all tabs are rendered as 4 spaces instead of 8 See https://snippets.webaware.com.au/snippets/set-tab-size-github-gist-bitbucket/ I think it is worth considering adding ``` body { -moz-tab-size: 4; tab-size: 4; }...

@bryanwillis brings up that by switching from `genesis_footer_creds_text` to `genesis_footer_output` we gain more control over modifying the footer area. See PR #110 My first instinct is as a starter theme,...

See http://genesis-accessible.org/2015/07/genesis-2-2-accessibility-changes-and-features/ Ultimately, this is the code we want to add to `lib/genesis-setup.php` ``` add_theme_support( 'genesis-accessibility', array( 'headings', 'drop-down-menu', 'search-form', 'skip-links', 'rems' ) ); ``` though currently some of these...

enhancement