Forum Replies Created
-
AuthorPosts
-
emree025Participant
Skandha – thank you. After I changed in the code the width:150 – to 127px it passed. With other value the logo images shown in only one colums. Any possibility to get the logo images bigger in two columns? 🙂 Best regards
emree025ParticipantSkandha thank you for answer. No, it didn´t work. Any other solution?
emree025ParticipantSkandha thank you very much for support. After checking again I got passed message. Best regards. Bye
emree025ParticipantHello Skandha thank you for answer. Sorry the link before was wrong. This is the right link http://t1p.de/86ar
emree025ParticipantThank u very much 🙂
emree025ParticipantProblem no. 1 seems to be solved byself.
emree025Participantbaneff thank u very much 🙂 with this 1 code all 3 problems are solved 🙂
Best regards.
emree025ParticipantThank you for support. I passed to change the word, but the the word “menü” seems did not work well because of the letter “ü”
emree025ParticipantHello dear Pratik. Thank you for answer. Should I copy and past the whole function above even I use only primary menu? In which line of this child theme functions.php i should past the function?
<?php
/**
* Child Theme functions and definitions
*
*//**
* Loading Parent theme stylesheet
*
*/
add_action( ‘wp_enqueue_scripts’, ‘catchbox_child_enqueue_styles’ );
function catchbox_child_enqueue_styles() {
wp_enqueue_style( ‘catchbox-parent-style’, get_template_directory_uri() . ‘/style.css’ );
}emree025ParticipantHello Pratik, thank u for answer. I am beginner.
1) I’ve still created a child theme.
2) I’ve found this functions in catch-box/inc/catchbox-menus.php:if ( ! function_exists( ‘catchbox_mobile_header_nav_anchor’ ) ) :
/**
* This function loads Mobile Menus Anchor in Header Section
*
* @get the data value from theme options
* @uses catchbox_after_headercontent action to add in the Header
*/
function catchbox_mobile_header_nav_anchor() {
//Getting Ready to load options data
$options = catchbox_get_theme_options();// Header Left Mobile Menu Anchor
if ( has_nav_menu( ‘primary’ ) ) {
$classes = “mobile-menu-anchor primary-menu”;
}
else {
$classes = “mobile-menu-anchor page-menu”;
}
?>
<div class=”menu-access-wrap clearfix”>
<div id=”mobile-header-left-menu” class=”<?php echo $classes; ?>”>
<span class=”mobile-menu-text”><?php _e( ‘Menu’, ‘catch-box’ );?></span>
</div><!– #mobile-header-menu –><?php
if ( ( !empty ( $options [‘enable_menus’] ) && has_nav_menu( ‘secondary’ ) ) ) {
$classes = “mobile-menu-anchor secondary-menu”;
}
else {
return;
}
?>
<div id=”mobile-header-right-menu” class=”<?php echo $classes; ?>”>
<span class=”mobile-menu-text”><?php _e( ‘Secondary Menu’, ‘catch-box’ );?></span>
</div><!– #mobile-header-menu –>
</div><!– .menu-access-wrap –><?php
}
endif; //catchbox_mobile_header_nav_anchoradd_action( ‘catchbox_after_headercontent’, ‘catchbox_mobile_header_nav_anchor’, 20 );
if ( ! function_exists( ‘catchbox_mobile_footer_nav_anchor’ ) ) :
/**
* This function loads Mobile Menus Anchor in Footer Section
*
* @get the data value from theme options
* @uses catchbox_footer_menu action to add in the Header
*/
function catchbox_mobile_footer_nav_anchor() {
//Getting Ready to load options data
$options = catchbox_get_theme_options();if ( ( !empty ( $options [‘enable_menus’] ) && has_nav_menu( ‘footer’ ) ) ) { ?>
<div class=”menu-access-wrap clearfix”>
<div id=”mobile-footer-menu” class=”mobile-menu-anchor footer-menu”>
<span class=”mobile-menu-text”><?php _e( ‘Footer Menu’, ‘catch-box’ );?></span>
</div><!– #mobile-footer-menu –>
</div><!– .menu-access-wrap –>
<?php
}
}
endif; //catchbox_mobile_footer_nav_anchoradd_action( ‘catchbox_footer_menu’, ‘catchbox_mobile_footer_nav_anchor’, 20 );
3) I still not use functions php in child catch box theme. Should I create new file called functions.php and than copy and past this full code in a functions.php ?
4) Could yo please help im modifying ? Is there maybe a easyier way ?
Best regards 🙂
emree025ParticipantGood morning Sakin. Could you please check again site: http://bit.ly/1JuQwSe
I am a beginner and I have searched various forums for a solution but unfortunately not with the result so that it look like on this picture: http://bit.ly/1IIGMUl (modified with paint.net) and http://bit.ly/1Qk6unD
Could you please help?emree025ParticipantThank u very much 🙂 best regards from germany.
emree025ParticipantSorry, I try to explain. If you look to this picture nr. 1 http://bit.ly/1FTZDLA its a screenshot (responsive) from this site http://www.bit.ly/1DkOCFp you will recognize that the frame, the right and left lines of the box (widget) is not visible. I want that the box (widget) and the whole site is visible like on this picture nr. 2 http://bit.ly/1EGCw8C
emree025ParticipantHere are the link to the picture again which I like to have http://bitly.com/1CXcwQM
Also the distance of the further text to the sides (in responsive) can be extended.
emree025ParticipantHello. I did what above is written. But now I have 2 icons.
Here you can see:http://de.tinypic.com/view.php?pic=saxllg&s=8#.VSO3WJObGnk
How to delete the other dark arrow before ? Which size px the icon should have ?
Maybe you have sample icons for download ?emree025ParticipantProblem solved byself.
Which code I´ve to add in style.css when I want the same responsive width like
on http://www.bit.ly/19SLRxe -
AuthorPosts