Title: zeaks's Replies | WordPress.org

---

# zeaks

  [  ](https://wordpress.org/support/users/zeaks/)

 *   [Profile](https://wordpress.org/support/users/zeaks/)
 *   [Topics Started](https://wordpress.org/support/users/zeaks/topics/)
 *   [Replies Created](https://wordpress.org/support/users/zeaks/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/zeaks/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/zeaks/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/zeaks/engagements/)
 *   [Favorites](https://wordpress.org/support/users/zeaks/favorites/)

 Search replies:

## Forum Replies Created

Viewing 15 replies - 1 through 15 (of 450 total)

1 [2](https://wordpress.org/support/users/zeaks/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zeaks/replies/page/3/?output_format=md) …
[28](https://wordpress.org/support/users/zeaks/replies/page/28/?output_format=md)
[29](https://wordpress.org/support/users/zeaks/replies/page/29/?output_format=md)
[30](https://wordpress.org/support/users/zeaks/replies/page/30/?output_format=md)
[→](https://wordpress.org/support/users/zeaks/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Sparkling] editing widget area](https://wordpress.org/support/topic/editing-widget-area/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/editing-widget-area/#post-6971083)
 * Not sure about this theme in particular but usually you can edit the widget function
   in functions.php. Best to create a child theme to do it and modify it there.
 * Something like this
 *     ```
       'before_widget' => '<aside id="%1$s" class="widget %2$s panel panel-default">',
       		'after_widget'  => '</div></aside>',
       		'before_title'  => '<div class="panel-heading"><h4 class="widget-title panel-title">',
       		'after_title'   => '</h4></div><div class="panel-body">',
       	) );
       ```
   
 * You will need to remove the widget area then add it back in the child theme.
 * This explains how to remove it
    [https://codex.wordpress.org/Function_Reference/unregister_sidebar](https://codex.wordpress.org/Function_Reference/unregister_sidebar)
 * You can copy the function in your theme to add it back.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bootville Lite] Android & Apple Mobile](https://wordpress.org/support/topic/android-apple-mobile/)
 *  Theme Author [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/android-apple-mobile/#post-6804949)
 * The menu issue was caused by a corrupt JavaScript file. If anyone else happens
   to have this problem download a new copy of bootville lite and it should fix 
   it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bootville Lite] Android & Apple Mobile](https://wordpress.org/support/topic/android-apple-mobile/)
 *  Theme Author [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/android-apple-mobile/#post-6804780)
 * The Youtube problem is a known issue I’ll fix it in an update soon. You’ll need
   to edit the style.css to fix it.
 * Search for this block of code
 *     ```
       /* Make sure embeds and iframes fit their containers */
       embed,
       iframe,
       object,
       img {
       	max-width: 100%;
       	height: auto;
       }
       ```
   
 * Remove iframe, from it and your videos should fit properly.
 * Usually a CSS change would be added to the child theme but because I’ll be fixing
   this in the update it won’t matter and any fix will be useless in the child theme
   after the update.
 * Your mobile menu isn’t working at all, even in a browser when resizing the site.
   It’s probably an issue with a plugin. Try disabling your plugins and resize the
   browser to see if the menu works.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Bootville Lite] Grey borders](https://wordpress.org/support/topic/grey-borders/)
 *  Theme Author [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [10 years, 5 months ago](https://wordpress.org/support/topic/grey-borders/#post-6802682)
 * To remove the border around the header image add the following to your child 
   theme
 *     ```
       .header-image {
           border: none;
           padding: 0;
       }
       ```
   
 * The borders around the sidebar items are added by Bootstrap. You can remove them
   by removing the panel-default class in the widget section of functions. Alternatively
   you should be able to use CSS to remove the border, this should do it.
 *     ```
       #secondary .panel-default,
       #secondary .panel {
            border: none;
            box-shadow: none;
       }
       ```
   
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Blog page change page template](https://wordpress.org/support/topic/blog-page-change-page-template/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [10 years, 7 months ago](https://wordpress.org/support/topic/blog-page-change-page-template/#post-6586450)
 * Thanks Michael this explains alot, I don’t know how I’ve never run into this 
   before
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Remove required file in child theme](https://wordpress.org/support/topic/remove-required-file-in-child-theme/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years ago](https://wordpress.org/support/topic/remove-required-file-in-child-theme/#post-5444204)
 * This had to do with the theme customizer and extending existing options. I ended
   up removing the functions the file contained then adding them back the way I 
   needed using custom functions.
 * I wrote an article on adding generic icons to twenty twelve where I had to do
   something the same by adding the meta function and customizing it in a child 
   theme [http://zeaks.org/use-genericons-with-twenty-twelve-theme/](http://zeaks.org/use-genericons-with-twenty-twelve-theme/)
 * Some functions can be copied to the child theme and customized like the meta 
   in 2012, and some need to be removed then added back in the child theme like 
   twenty twelve fonts
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Mivhak Syntax Highlighter] Highlight and bbpress issue](https://wordpress.org/support/topic/highlight-and-bbpress-issue/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 1 month ago](https://wordpress.org/support/topic/highlight-and-bbpress-issue/#post-5923166)
 * Hi, yes adding an option to select a default language when none is added would
   be great, otherwise I’ll need to go through all of my posts and change the tags.
 * As for bbPress, I did try other color schemes clouds included but they all looked
   the same. You said this is because of the bbPress CSS but the last version worked
   fine, what has changed that the plugin CSS doesn’t override the forum css?
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Add class to widget content](https://wordpress.org/support/topic/add-class-to-widget-content/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/add-class-to-widget-content/#post-5884316)
 * Just adding the class to the end of after_title, then the closing div to after_widget
   but before the closing div of before_widget worked, unless there is no title 
   choosen such as no title for the search widget.
 * I removed the closing div I added and it works…even though it should be missing
   a div for <div class=”panel-body”> it’s not in the html. >.<
 *     ```
       'before_widget' => '<aside id="%1$s" class="widget %2$s panel panel-primary">',
       'after_widget'  => '</aside>',
       'before_title'  => '<div class="panel-heading"><h4 class="widget-title panel-title">',
       'after_title'   => '</h4></div><div class="panel-body">',
       ```
   
 * Seems too be working, marking it as resolved.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Stylesheet ordering in child theme](https://wordpress.org/support/topic/stylesheet-ordering-in-child-theme/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/stylesheet-ordering-in-child-theme/#post-5858000)
 * Figured this out with the help of this article. Guess I’ve just never run into
   this problem before.
 * [http://mor10.com/challenges-new-method-inheriting-parent-styles-wordpress-child-themes/](http://mor10.com/challenges-new-method-inheriting-parent-styles-wordpress-child-themes/)
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[CPT Bootstrap Carousel] Image resizing on mobile](https://wordpress.org/support/topic/image-resizing-on-mobile/)
 *  Thread Starter [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/image-resizing-on-mobile/#post-5855729)
 * I added a new image size to the theme, ran a rebuild thumbnails plugin and set
   the slider to use the new image size and it’s resizing perfectly now.
 * Thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Navigation bar width – Twenty Eleven](https://wordpress.org/support/topic/navigation-bar-width-twenty-eleven/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/navigation-bar-width-twenty-eleven/#post-5848585)
 * I’m guessing you changed the 100% width to 90%, and also assuming you did not
   change the max width of the site from 1000px.
 * If that’s correct then try this
 *     ```
       #access {
         margin: 0 auto 6px 5%;
           max-width: 900px;
           width: 90%;
       }
       ```
   
 * This will set a max width of 10% less than 1000px, and use 5% for a left and 
   right margin.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Fifteen] Transparent background in post content](https://wordpress.org/support/topic/transparent-background-in-post-content/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transparent-background-in-post-content/page/3/#post-5847520)
 * Looking at your child theme style.css now and it looks like you have the entire
   twenty Fifteen CSS added to it which is not needed at all.
 * This is all that should be in your child theme style.css (unless you’ve made 
   other CSS changes)
 * Change the child theme name, author etc to whatever you want.
 *     ```
       /*
       Theme Name: Blank Twenty Fifteen Child theme
       Theme URI: http://yoursite/yourtheme
       Description: A child theme of 2015 default WordPress theme.
       Author: Your Name
       Author url: http://yoursite.com/
       Version: 1.0
       Tags: black, blue, white, fixed-width, custom-header, theme-options
       Template: twentyfifteen
       */
   
       /* transparent post background */
       .hentry {
       	background-color: transparent !important;
       }
       ```
   
 * This is all that should be in your functions.php (unless you have other functions
   you need)
 *     ```
       <?php
   
       //Import parent styles add other stylesheets if necessary.
       function wpchildthemes12122_enqueue_child_styles() {
   
       	wp_enqueue_style( 'parent-style', get_template_directory_uri().'/style.css' );
       }
   
       add_action( 'wp_enqueue_scripts', 'wpchildthemes12122_enqueue_child_styles' );
       ```
   
 * Here’s a bit of reading to understand how child themes work and what to add and
   not add to them. [http://codex.wordpress.org/Child_Themes](http://codex.wordpress.org/Child_Themes)
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Twenty Fifteen] Transparent background in post content](https://wordpress.org/support/topic/transparent-background-in-post-content/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/transparent-background-in-post-content/page/2/#post-5847507)
 * This should work, add it to the CSS plugin or Child theme CSS.
 * I don’t like using !important but I think the theme customizer may override the
   class in a child theme in this case since it’s added after the other stylesheets
   in the header.
    Since the dark color scheme has a color I would assume the other
   color schemes have #FFFFFF as the background color.
 *     ```
       .hentry {
       	background-color: transparent !important;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Adding Space between an Ad and a Widget](https://wordpress.org/support/topic/adding-space-between-an-ad-and-a-widget/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/adding-space-between-an-ad-and-a-widget/#post-5845466)
 * That would be added to your style.css I can’t say for sure it would work it was
   just an example, the html was a bit jumbled when I looked at it, but that’s basically
   how I would go about doing it.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Albar] Resize Heading Font Size](https://wordpress.org/support/topic/resize-heading-font-size/)
 *  [zeaks](https://wordpress.org/support/users/zeaks/)
 * (@zeaks)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/resize-heading-font-size/#post-5845828)
 * The CSS for it is
 *     ```
       .site-header-one .site-title a {
           font-size: 45px;
           font-weight: 500;
           text-transform: uppercase;
       }
       ```
   
 * Use this to change the font size, change 45px to whatever you like
 *     ```
       .site-header-one .site-title a {
           font-size: 45px;
       }
       ```
   

Viewing 15 replies - 1 through 15 (of 450 total)

1 [2](https://wordpress.org/support/users/zeaks/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/zeaks/replies/page/3/?output_format=md) …
[28](https://wordpress.org/support/users/zeaks/replies/page/28/?output_format=md)
[29](https://wordpress.org/support/users/zeaks/replies/page/29/?output_format=md)
[30](https://wordpress.org/support/users/zeaks/replies/page/30/?output_format=md)
[→](https://wordpress.org/support/users/zeaks/replies/page/2/?output_format=md)