Would you be kind enough to tell me how to increase the width of the first footer column so that the word “Center” appears on the first line and does not wrap to the 2nd line?
http://www.acunyc.com/
Screenshot:
http://prntscr.com/4x9klr
Hi Dan!
Thank you for using Enfold.
Please use this on Quick CSS or custom.css:
#footer div .av_one_fourth:first-child {
width: 23%;
}
#footer div .av_one_fourth:nth-child(2) {
width: 18%;
}
Best regards,
Ismael
Hello Ismael:
The code you provided did not make the first line of text in the first footer column appear on one line. However, when I changed the width to “26%”, this did in fact work.
Unfortunately, the 4th column of data is now getting pushed down onto a line bellow the other 3 columns. So there are three columns on the same row and the 4th column appears below this. This needs to be corrected.
Can you provide a revised code to correct this?
Maybe the space between each column can be reduced (there is a lot of space between each footer column.
Thank you,
Dan
Hey!
you can try to add this to Quick CSS:
div .av_one_fourth {
margin-left: 5%;
}
Just adjust “5%” to any number you want.
Regards,
Andy