Tagged: center
Ive got silly problem. I have color section and inside it i have two 1/4 elements in a row.They are possitioned by default to the left. How can i force them to be positioned in center.
Hey foxtrotstudio!
Thank you for using our theme.
Can you send us a link to the page please so we can give you the correct CSS ?
But you can also try to add an empty 1/4 column as the first and at the last position.
Best regards,
Günter
Hi!
Keep the 4 colums.
Try the following in custom.css or Enfold->Styles->Quick CSS field:
@media only screen and (min-width: 768px) and (max-width: 959px) {
#av_section_1 .container .first,
#av_section_1 .container .avia-builder-el-last{
display: none;
}
#av_section_1 .container .av_one_fourth{
margin-left: 0;
width: 100%;
}
}
Maybe you have to adjust the min-width to 480px;
Cheers!
Günter
Thanks!