Title: tbcrew's Replies | WordPress.org

---

# tbcrew

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

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

 Search replies:

## Forum Replies Created

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

1 [2](https://wordpress.org/support/users/tbcrew/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tbcrew/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/tbcrew/replies/page/2/?output_format=md)

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [remove a sidebar](https://wordpress.org/support/topic/remove-a-sidebar-1/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/remove-a-sidebar-1/#post-6138543)
 * try adding this
 *     ```
       #main #content,
       #main #footer {
           margin-left: 43px;
           margin-right: 41px;
       }
       #main #fixed-bg {
           background-position: -11px 0;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [More Tag question](https://wordpress.org/support/topic/more-tag-question-1/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 2 months ago](https://wordpress.org/support/topic/more-tag-question-1/#post-6203958)
 * The theme already filters the “more” tag. Just search for the “fastfood_more_link”
   function in functions.php file (line 2019) and modify it.
    If you only need to
   change the text of the link, there’s an option for that in the theme options 
   page
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Overlapping Text](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/#post-5813473)
 * you’re welcome
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Overlapping Text](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/#post-5813471)
 * you’re right, the text hyphenation seems to be a really unsupported property.
   
   Let’s try something else:
 *     ```
       .storycontent {
       	overflow-x: auto;
       	overflow-y: visible;
       }
       ```
   
 * Let me know what happens
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Overlapping Text](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/#post-5813469)
 * ok, just add the following to style.css or to the “custom CSS” field in theme
   options page
 *     ```
       .storycontent table,
       .comment-body table {
       	-webkit-hyphens: auto;
       	-moz-hyphens:    auto;
       	-ms-hyphens:     auto;
       	hyphens:         auto;
       }
       ```
   
 * this should work on the recent versions of almost all the major browsers
    At 
   last, since many users still have IE8 (bad bad users 😉 ), you can consider adding
   the following hack too
 *     ```
       .storycontent {
       	overflow: auto\9;
       }
       ```
   
 * Hope it helps
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Navigation](https://wordpress.org/support/topic/navigation-58/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/navigation-58/#post-5658264)
 * Hi. There’s no option for hiding/showing the thumbnails in navigation. You have
   to edit the file _functions.php_:
    [@line](https://wordpress.org/support/users/line/)
   1305-1322 there’s the code of the navigation block. Replace it with
 *     ```
       <div class="nav-single fixfloat">
       		<?php if ( $prev ) { ?>
       			<span class="nav-previous ">
       				<a rel="prev" href="<?php echo esc_url( get_permalink( $prev ) ); ?>" title="<?php echo esc_attr(strip_tags( __( 'Previous Post', 'boozurk' ) . ': ' . $prev_title ) ); ?>">
       					<span><?php echo $prev_title; ?></span>
       				</a>
       			</span>
       		<?php } ?>
       		<?php if ( $next ) { ?>
       			<span class="nav-next">
       				<a rel="next" href="<?php echo esc_url( get_permalink( $next ) ); ?>" title="<?php echo esc_attr(strip_tags( __( 'Next Post', 'boozurk' ) . ': ' . $next_title ) ); ?>">
       					<span><?php echo $next_title; ?></span>
       				</a>
       			</span>
       		<?php } ?>
       	</div><!-- #nav-single -->
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Overlapping Text](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [11 years, 5 months ago](https://wordpress.org/support/topic/boozurk-theme-overlapping-text/#post-5813465)
 * hi! thanks for compliments and for using our theme. Could you please provide 
   a link to your site, so we can take a live check?
    thanks Jimo
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [adjusting sidebars](https://wordpress.org/support/topic/adjusting-sidebars/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 3 months ago](https://wordpress.org/support/topic/adjusting-sidebars/#post-4813562)
 * if you’re using the latest version (3.00), take a look at the theme options page,
   under “layout” tab you can find the option for resizing the sidebars
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Yoast SEO - Advanced SEO with real-time guidance and built-in AI] How to hide breadcrumbs and surrounding markup.](https://wordpress.org/support/topic/how-to-hide-breadcrumbs-and-surrounding-markup/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/how-to-hide-breadcrumbs-and-surrounding-markup/#post-4699210)
 * Same here. Seems that the ‘yoast_breadcrumb’ function always exists now, and 
   the only way to check if breadcrumbs are enabled or not is using the wpseo_internallinks[‘
   breadcrumbs-enable’] option.
    Not a big issue, but it’s weird and not documented
   in author site
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: ["I like it" WordPress Social Media Tool](https://wordpress.org/support/topic/i-like-it-wordpress-social-media-tool/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 8 months ago](https://wordpress.org/support/topic/i-like-it-wordpress-social-media-tool/#post-4375978)
 * I’m not sure how to add it, but I suppose that this feature can be added by using
   Jetpack plugin. It has a lot of “like” links
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [QR Code](https://wordpress.org/support/topic/qr-code-2/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 9 months ago](https://wordpress.org/support/topic/qr-code-2/#post-4301432)
 * Hi,
    did you have a widget or a plugin that generate that QR? Wallow doesn’t 
   add any QR, or similar, to the pages
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Fastfood having conflict with many plugins](https://wordpress.org/support/topic/fastfood-having-conflict-with-many-plugins/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/fastfood-having-conflict-with-many-plugins/#post-4234838)
 * Hi,
    I tested the plugins you listed in a couple of test enviroments but I cannot
   replicate the problem. I tested them one by one and even all together but nothing
   happened. Actually I can’t help you, sorry.
 * BTW many of those plugins generate a lot of small errors (you can see them only
   in development mode) not related to the theme in use.
 * My suggestion is, since you need those plugins, to change the theme. I’m sorry
   about that, but it seems the only solution 🙁
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Delete login/register text from footer in mobile view](https://wordpress.org/support/topic/delete-loginregister-text-from-footer-in-mobile-view/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/delete-loginregister-text-from-footer-in-mobile-view/#post-4140244)
 * Hi!
    Thanks for using our theme!
 * In order to remove the login/register links, just open the file mobile/footer-
   mobile.php with the editor and delete (line 29)
 *     ```
       <?php wp_loginout(); wp_register( ' | ', '' ); ?>
       ```
   
 * Bye!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Tables without frame still shows the frame](https://wordpress.org/support/topic/tables-without-frame-still-shows-the-frame/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [12 years, 10 months ago](https://wordpress.org/support/topic/tables-without-frame-still-shows-the-frame/#post-4098598)
 * Hi,
    the style of tables is defined in style.css. If you want to change it, you
   have to ways
 * 1 – open style.css in the editor, search for the selectors **.storycontent table,.
   comment-body table** and delete the rule (line 129 or so)
 *     ```
       border: 1px solid #ccc;
       ```
   
 * OR
 * 2 (HIGHLY RECOMMENDED) – in theme options page, search for the _custom css_ option
   and paste inside the text area
 *     ```
       .storycontent table,
       .comment-body table {
       	border: none;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to keep sidebar fixed upon window resizing](https://wordpress.org/support/topic/how-to-keep-sidebar-fixed-upon-window-resizing/)
 *  [tbcrew](https://wordpress.org/support/users/tbcrew/)
 * (@tbcrew)
 * [13 years ago](https://wordpress.org/support/topic/how-to-keep-sidebar-fixed-upon-window-resizing/#post-3932923)
 * Hi,
    try to uncheck the **responsive layout** option in _theme options page_

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

1 [2](https://wordpress.org/support/users/tbcrew/replies/page/2/?output_format=md)
[3](https://wordpress.org/support/users/tbcrew/replies/page/3/?output_format=md)
[→](https://wordpress.org/support/users/tbcrew/replies/page/2/?output_format=md)