Tagged: 

Viewing 26 posts - 1 through 26 (of 26 total)
  • Author
    Posts
  • #529585

    Hi,

    I’m having issues with the side bar after I add a full width color section on the bottom of the page. It seems to be adding a new section below the full width color section and pushing the sidebar links below it. See image attached.

    [IMG]http://i68.tinypic.com/11jox8j.png[/IMG]

    #529810

    Hi instudioe,

    That is the expected behaviour, the color section is full width element meaning it will stretch 100% of the browser width. Please use a 1/1 element instead.

    Best regards,
    Rikard

    #530105

    I would still like to have the color section stretch the full width, but at the bottom, not in the middle of the page. I need it right above the footer.

    I used a full width section at the top of the page that works, just need to repeat that on the bottom right above the footer.

    #530124

    Hi!

    As Rikard said, that is expected behaviour. Please try using Widget Area element to display your widget areas on your page if you would like to display Color Section or any other fullwidth element at the bottom of your page.

    Cheers!
    Yigit

    #530141

    Can you explain how to use the custom Widget area for the full width color section with social links above the footer?

    See homepage example:

    #530553

    Hi,

    Not sure if I understand what you are trying to do, what problems are you facing? Please try to explain a bit further and/or post screenshots to highlight your intentions.

    Thanks,
    Rikard

    #533664

    On the homepage (see private link) I have a full width color section with social media links right above the footer. I would like this to be universal throughout the site. Since the theme does not have a full width widget area above the footer, I have to add the social media full width section to each page manually. When I add the full width social media section to pages with a side bar, it pushes the side bar links below the full width section, even though I add it to the bottom of the page. See image here: http://i68.tinypic.com/11jox8j.png It pushes all the sidebar links and widgets below it.

    How do I add this full width section above the footer on pages with a side bar?

    #534580

    Hey!

    The workaround is to disable the sidebar on pages with sidebar then use the Widget Area element to act as sidebar. The widget area element is basically the same as the sidebar. You can separate the content from the sidebar with columns. Or modify the footer.php file directly.

    Cheers!
    Ismael

    #534939

    I feel like modifying the footer.php would be the best option.

    What’s a way I can add a new full width widget area above the footer from footer.php? Then I could just style that new widget area.

    #536572

    hello?

    #536635

    in section.php there are the rules for creating a new section allways if there is a sidebar. but why is the sidebar placed in that last newly created section and not in the first one ( #after_section_1)

    #537745

    I’m sorry I don’t understand.

    I just need to know how to keep my side bar on the pages the same they are now, while adding a full width color section to the bottom of the page without it pushing the sidebar content below it.

    Please see link attached

    #538388

    the side bar is placed in a container called: #after_section_x
    my question is concerning to the fact that aside is placed in the last #after_section_x (e.g: #after_section_2)
    so i want to know why – what benefit this has or is it possible to place it by default in the first #after_section_1

    #538398

    The main goal is to have the full width color section right above the footer. Please see homepage example:

    #538862

    My question does not go to you but to the admins here . The reason why your sidebar is under your last ( just above the footer) color section is that the sidebar goes automatically in that newly generated last “#after_section” container.
    I think they want to make sure that on responsive case the sidebar goes under the main content – but by default the sidebar goes beneath 768px to display none – so sidebar could be placed by default in the #after_section_1

    if you have between your last color section and your footer content again the sidebar is displayed aside that content

    see here : http://webers-testseite.de/enf02/testseite/

    so my question to the developer is, if there is any reason against placing the sidebar by default in the #after_section_1

    • This reply was modified 8 years, 5 months ago by Guenni007.
    #538888

    hm – i think this is a wordpress function – not an enfold thing.
    i do not find in the enfold code a definition where the sidebar goes to.

    #540589

    Hey!


    @Guenni007
    : Thanks for helping. :)


    @instudioe
    : Please turn on the debug mode in order to see the actual shortcode of the color section with the social icon. Use that shortcode as content of the do_shortcode function in the footer.php file. https://developer.wordpress.org/reference/functions/do_shortcode/

    Regards,
    Ismael

    #542753

    Thank you Ismael!

    Can you show me how I would add this short code:

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#303030' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']

    <center></center>
    <div id=”social-footer”>facebookinstagramtwitteryoutube</div>
    [/av_textblock]
    [/av_section]

    To the do_shortcode:

    function do_shortcode( $content, $ignore_html = false ) {
    global $shortcode_tags;

    if ( false === strpos( $content, ‘[‘ ) ) {
    return $content;
    }

    if (empty($shortcode_tags) || !is_array($shortcode_tags))
    return $content;

    $tagnames = array_keys($shortcode_tags);
    $tagregexp = join( ‘|’, array_map(‘preg_quote’, $tagnames) );
    $pattern = “/\\[($tagregexp)/s”;

    if ( 1 !== preg_match( $pattern, $content ) ) {
    // Avoids parsing HTML when there are no shortcodes or embeds anyway.
    return $content;
    }

    $content = do_shortcodes_in_html_tags( $content, $ignore_html );

    $pattern = get_shortcode_regex();
    $content = preg_replace_callback( “/$pattern/s”, ‘do_shortcode_tag’, $content );

    // Always restore square braces so we don’t break things like <!–[if IE ]>
    $content = unescape_invalid_shortcodes( $content );

    return $content;
    }

    #544956

    Hey!

    The forum breaks the code. Please post it on pastebin.com.

    Regards,
    Ismael

    #544961

    [av_section min_height='' min_height_px='500px' padding='default' shadow='no-shadow' bottom_border='no-border-styling' id='' color='main_color' custom_bg='#303030' src='' attachment='' attachment_size='' attach='scroll' position='top left' repeat='no-repeat' video='' video_ratio='16:9' overlay_opacity='0.5' overlay_color='' overlay_pattern='' overlay_custom_pattern='']
    [av_textblock size='' font_color='' color='']
    <center></center>
    <div id=”social-footer”>facebookinstagramtwitteryoutube</div>
    [/av_textblock]
    [/av_section]

    #544965

    Can I just give you my log-in credentials for you to do it?

    #546740

    Hi!

    as Ismael already said: The forum might break the code, so please provide us your code via pastebin.com.

    You can send us admin access and we’ll take a look. Post login details here as private reply.

    Cheers!
    Andy

    #550087

    Please see below

    #551581

    Hi!

    We added this code in the functions.php file:

    add_action('ava_before_footer', 'ava_before_footer_mod');
    function ava_before_footer_mod() {
    	echo '<div id="footer_custom" class="avia-section main_color avia-section-default avia-no-shadow avia-bg-style-scroll  container_wrap sidebar_right" style="background-color: #303030; background-color: #303030; "><div class="container"><div class="template-page content  av-content-small alpha units"><div class="post-entry post-entry-type-page post-entry-53"><div class="entry-content-wrapper clearfix">
    	<section class="av_textblock_section" itemscope="itemscope" itemtype="https://schema.org/CreativeWork"><div class="avia_textblock " itemprop="text"><p>	</p><center></center><p></p>
    <div id="social-footer"><a href="https://www.facebook.com/EVOAthletics?fref=ts" target="_blank"><img class="facebook" src="http://evoathletics.com/wp-content/uploads/2015/11/facebook.png" alt="facebook" width="53" height="44"></a><a href="http://instagram.com/evogymnastics/" target="_blank"><img class="instagram" src="http://evoathletics.com/wp-content/uploads/2015/11/instagram.png" alt="instagram" width="53" height="44"></a><a href="#" target="_blank"><img class="twitter" src="http://evoathletics.com/wp-content/uploads/2015/11/twitter.png" alt="twitter" width="53" height="44"></a><a href="https://www.youtube.com/channel/UCiS6Wy3JblyAgh2jJVZH23w" target="_blank"><img class="youtube" src="http://evoathletics.com/wp-content/uploads/2015/11/youtube.png" alt="youtube" width="53" height="44"></a></div>
    </div></section>
    	</div></div></div><!-- close content main div --></div></div>';
    }

    Example here: http://evoathletics.com/pagetest/

    Regards,
    Ismael

    #551759

    THANK YOU!!!!!

    #551884

    Hi!

    No problem. Glad we could help! :)

    Cheers!
    Ismael

Viewing 26 posts - 1 through 26 (of 26 total)
  • The topic ‘Full Width Color Section on bottom’ is closed to new replies.