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

    hi, how can i make this color area 120px high? i have set the high to 120px but it it to big: http://imgur.com/wHgqVNx

    …and how can i bring the whole text area 6px down? http://imgur.com/9Gdpwoy

    Thank you so much and have a nice weekend.

    #481808

    Make it 120px high by going to edit page – color section – settings – set custom height.

    If it don’t work (I think min-width is 120px per default)

    Write in CSS
    #av_section_1 {
    height: 120px !important;
    }

    You can move it down with margin/padding/top

    #av_section_1 {
    margin-top: 6px;
    }

    #481812

    Thank!!!! That helps. But i want to add it to a custom id class i can add to the color section :) Then i can use this settiongs for different pages on my blog :)

    Can you help me to get the correct code i can put in my style.css?

    #custom_120px .v_section_1 {
    height: 120px !important;
    margin-top: 6px;
    }

    #482882

    Hi!

    Please try inserting the below css to your custom css section:

    #custom_120px .avia-section {
        height: 120px !important;
    }
    
    #custom_120px .flex_column av_four_fifth  .flex_column_div av-zero-column-padding {
    	margin-top: 6px !important;
    }

    Best regards,
    Dake

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