tbcrew
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Boozurk] remove a sidebartry adding this
#main #content, #main #footer { margin-left: 43px; margin-right: 41px; } #main #fixed-bg { background-position: -11px 0; }Forum: Themes and Templates
In reply to: [Fastfood] More Tag questionThe 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 pageForum: Themes and Templates
In reply to: [Boozurk] Overlapping Textyou’re welcome
Forum: Themes and Templates
In reply to: [Boozurk] Overlapping Textyou’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
In reply to: [Boozurk] Overlapping Textok, 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
In reply to: [Boozurk] NavigationHi. There’s no option for hiding/showing the thumbnails in navigation. You have to edit the file functions.php:
@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
In reply to: [Boozurk] Overlapping Texthi! 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
JimoForum: Themes and Templates
In reply to: [Boozurk] adjusting sidebarsif 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
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 siteForum: Themes and Templates
In reply to: [Fastfood] "I like it" WordPress Social Media ToolI’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
In reply to: [Wallow] QR CodeHi,
did you have a widget or a plugin that generate that QR?
Wallow doesn’t add any QR, or similar, to the pagesForum: Themes and Templates
In reply to: [Fastfood] Fastfood having conflict with many pluginsHi,
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
In reply to: [Fastfood] Delete login/register text from footer in mobile viewHi!
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
In reply to: [Fastfood] Tables without frame still shows the frameHi,
the style of tables is defined in style.css.
If you want to change it, you have to ways1 – 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
In reply to: [Fastfood] How to keep sidebar fixed upon window resizingHi,
try to uncheck the responsive layout option in theme options page