Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #735966

    hi. how can i bring text down to bottom of color section: http://imgur.com/a/0G9Ny

    can you help me to add the code to a custom color section for this effect :) Greetings.

    And i use 2 color section here: http://imgur.com/a/aEqwG How can i set a ratio of 65% to 35% instead of 75% and 25% (high of color section)?

    #738148

    Hey arteffekt!

    Thank you for using Enfold.

    View post on imgur.com

    Where can we find that section? I can’t find it anywhere in the site. Please provide a link or url to the actual page.

    And i use 2 color section here: http://imgur.com/a/aEqwG How can i set a ratio of 65% to 35% instead of 75% and 25% (high of color section)?

    This is possible but you have to modify one of the parent theme files. Edit the js > avia.js file, look for this code around line 2272:

    				wh75		= Math.round( wh100 * 0.75 ),
    				wh50		= Math.round( wh100 * 0.5  ),
    				wh25		= Math.round( wh100 * 0.25 ),

    .. replace it with:

    				wh75		= Math.round( wh100 * 0.65 ),
    				wh50		= Math.round( wh100 * 0.5  ),
    				wh25		= Math.round( wh100 * 0.35 ),
    

    Regards,
    Ismael

    #750922

    hi. how can i bring text down to bottom of color section: http://imgur.com/a/0G9Ny

    can you help me to add the code to a custom color section for this effect :) Greetings.

    #752884

    Hi,

    Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:

    .postid-675 #av_section_1 .content {
        vertical-align: bottom;
    }
    

    Best regards,
    Yigit

Viewing 4 posts - 1 through 4 (of 4 total)
  • You must be logged in to reply to this topic.