Title: Sinatra Theme
Last modified: August 19, 2020

---

# Sinatra Theme

 *  Resolved [Jules Play](https://wordpress.org/support/users/jules-play/)
 * (@jules-play)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/sinatra-theme/)
 * This page is not the way I want it to look. I don’t want the lines above and 
   below the main menu. I don’t want the row filled with white after the last row
   before the main menu. Also, I can’t get the footer font to be smaller and white.
   What am i missing? Is there a theme that would work better for me? I have this
   in my Additional CSS: #sinatra-footer .sinatra-footer-column {
    padding-top: 
   30px; padding-bottom: 30px; }
 * #panel-99-0-0-0 p {
    margin-top: 0; }
 * Any help would be truly appreciated. Stay safe!
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsinatra-theme%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

Viewing 6 replies - 1 through 6 (of 6 total)

 *  [Branko](https://wordpress.org/support/users/brankoconjic/)
 * (@brankoconjic)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13282061)
 * [@jules-play](https://wordpress.org/support/users/jules-play/),
 * All of those options are available in the Customizer.
 * 1) Header borders:
    – Go to **Appearance » Customize » Header » Design Options»
   Border** and set the “Bottom” value to 0. [Screenshot](https://www.dropbox.com/s/7soi9r10yih3c6x/Screen%20Shot%202020-08-19%20at%204.37.45%20PM.png?dl=0).
 * – Then, go to **Appearance » Customize » Header » Main Navigation » Design Options»
   Border** and set the “Top” value to 0.
 * 2) Margin around logo
    – Your [logo image](https://smdpmilw.org/wp-content/uploads/2020/07/Logo_Brown_Color.png)
   has some whitespace around the actual graphic, but you also have 30px bottom 
   margin for your logo.
 * – To change that go to **Appearance » Customize » Logos & Site Title » Logo Margin**
   and set the “Bottom” value to 0. You can also use negative values, like “-10”.
 * 3) SiteOrigin builder that you are using is overriding Footer styles defined 
   in the Customizer. In order to override SiteOrigin builder styles for the footer,
   you can add the following CSS into the “Additional CSS” in the Customizer:
 *     ```
       #colophon p {
         color: #FFF;
         font-size: 16px;
       }
       ```
   
 * Let me know if you need more help with these.
 * Thanks!
 *  [Branko](https://wordpress.org/support/users/brankoconjic/)
 * (@brankoconjic)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13282171)
 * If you are already using a page builder, you may also want to try using “Sinatra
   Fullwidth” template for your page.
 * Edit the page and look for “Page Attributes” on right side. Under “Page Attributes”
   look for “Template” and change from “Default template” to “Sinatra Fullwidth”.
 * [Screenshot.](https://www.dropbox.com/s/qozmlfxts8trxl6/Screen%20Shot%202020-08-19%20at%204.55.40%20PM.png?dl=0)
 * Sinatra Fullwidth template will get rid of all spacings around the main content
   and it will give you a “blank canvas” for the content area to work with.
 *  Thread Starter [Jules Play](https://wordpress.org/support/users/jules-play/)
 * (@jules-play)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13287306)
 * Awesome! Thank you both so much. I thought I had tried every option in Appearance/
   Customize. I had not. Thank you also for taking the time to send screen shots.
   Your time is greatly appreciated. Thank You! Stay safe.
 *  Theme Author [sinatrateam](https://wordpress.org/support/users/sinatrateam/)
 * (@sinatrateam)
 * [5 years, 9 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13317445)
 * Resolving this issue.
 *  [maxma](https://wordpress.org/support/users/maxma/)
 * (@maxma)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13967758)
 * this is about the column width setting in the sinatra theme
    1.) will it be possible
   to add addtional colum then the pre set footer column and width configuration
 * 2.) will it be possible to change the default setting column width with addtional
   CSS code
 *  [Branko](https://wordpress.org/support/users/brankoconjic/)
 * (@brankoconjic)
 * [5 years, 4 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13976777)
 * Hey [@maxma](https://wordpress.org/support/users/maxma/),
 * You’d have to extend theme code in order to add another column in the footer.
   Follow these steps:
 * 1) Use a child theme or install [Code Snippets](https://wordpress.org/plugins/code-snippets/)
   plugin.
 * 2) Add the following code to add the additional column in the footer:
 *     ```
       add_filter('sinatra_footer_column_classes', 'sinatra_custom_footer_widgets_col');
       function sinatra_custom_footer_widgets_col($classes) {
       	$classes['layout-1'] = array(
       		'col-xs-12 col-sm-6 stretch-xs col-md',
       		'col-xs-12 col-sm-6 stretch-xs col-md',
       		'col-xs-12 col-sm-6 stretch-xs col-md',
       		'col-xs-12 col-sm-6 stretch-xs col-md',
       		'col-xs-12 col-sm-6 stretch-xs col-md',
       	);
   
       	return $classes;
       }
   
       add_action( 'widgets_init', 'sinatra_custom_footer_widgets' );
       function sinatra_custom_footer_widgets() {
       	register_sidebar(
       		array(
       			'name'          => esc_html__( 'Footer 5', 'sinatra' ),
       			'id'            => 'sinatra-footer-5',
       			'description'   => esc_html__( 'Widgets in this area are displayed in the fifth footer column.', 'sinatra' ),
       			'before_widget' => '<div id="%1$s" class="si-footer-widget si-widget si-entry widget %2$s clr">',
       			'after_widget'  => '</div>',
       			'before_title'  => '<h4 class="widget-title">',
       			'after_title'   => '</h4>',
       		)
       	);
       }
       ```
   
 * Make sure you have selected “Footer Layout 1” (in the Customizer » Layout Settings»
   Footer » Main Footer » Column Layout).

Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Sinatra Theme’ is closed to new replies.

 * ![](https://i0.wp.com/themes.svn.wordpress.org/sinatra/1.4.1/screenshot.jpg)
 * Sinatra
 * [Support Threads](https://wordpress.org/support/theme/sinatra/)
 * [Active Topics](https://wordpress.org/support/theme/sinatra/active/)
 * [Unresolved Topics](https://wordpress.org/support/theme/sinatra/unresolved/)
 * [Reviews](https://wordpress.org/support/theme/sinatra/reviews/)

 * 6 replies
 * 4 participants
 * Last reply from: [Branko](https://wordpress.org/support/users/brankoconjic/)
 * Last activity: [5 years, 4 months ago](https://wordpress.org/support/topic/sinatra-theme/#post-13976777)
 * Status: resolved