Tagged: x
-
AuthorPosts
-
March 24, 2017 at 4:33 am #1418785
We were advised by yourselves to insert “min-height: 400px;” into the row to make the row heights all the same size.
It worked for a while but please look at some of the following links – it has stopped working on Firefox (although I believe it works on Chrome)
Any reason why?
http://146test2.co.uk/acorn/about-us/case-studies/case-study-wellingborough-homes/
http://146test2.co.uk/acorn/about-us/case-studies/case-study-statutory-support-services/
http://146test2.co.uk/acorn/about-us/case-studies/case-study-sdc/
http://146test2.co.uk/acorn/about-us/case-studies/case-study-nicholls-colton/March 24, 2017 at 7:39 am #1418906Hi,
You can add this under Custom > Edit Global CSS in the Customizer.
.x-section.my-section .x-container.marginless-columns .x-column.x-1-2 { width: 49.9%; min-height: 500px; display: inline-block; }
Then add my-section in class field of your rows.
Hope that helps.
March 24, 2017 at 8:41 am #1418971This reply has been marked as private.March 24, 2017 at 1:06 pm #1419332Hi again,
I checked your pages and I don’t see you’ve added
my-section
class to any of your row. Can you please add the classmy-section
in class field of your rows?Thanks!
March 25, 2017 at 3:37 am #1419932I have only done it on one page to test it:
http://146test2.co.uk/acorn/about-us/case-studies/case-study-bbc/
See – it ISNT working…
Any ideas? Need this sorting….
March 25, 2017 at 7:42 pm #1420339Hi there,
Seems to be okay, all columns have equal height, and they are all marginless column. Is that what you’re trying to achieve?
Would you mind providing a screenshot?
Thanks!
March 26, 2017 at 4:49 am #1420550It is only on Firefox the issue is occurring. Can you ensure you check on Firefox please.
Screenshot Attached.
March 26, 2017 at 6:45 pm #1420945Hello There,
I am another staff checking on this thread! I have tested your site in Firefox and I could not replicate the issue. Please check out my screenshot: http://prntscr.com/eou5o4
I would recommend that you clear your Firefox browser cache or use Private Browsing mode and test your site again.
Please let us know how it goes.
March 28, 2017 at 5:17 am #1422813Your screenshot only proves that I am right.
those rows are not 400px high, and they are not all the same size. The bottom one is smaller in height. Surely you can see that?
March 28, 2017 at 7:23 pm #1423592Hi There,
The
min-height
does not work in Firefox if the div is set todisplay: table
which the ROW and Columns are. Useheight: 500px;
instead.Or add this on your custom CSS.
@media (min-width: 768px) { .x-section .my-section { min-height: 500px !important; display: flex !important; } }
Thanks,
March 29, 2017 at 7:40 am #1424073Guys this STILL hasnt worked – http://146test2.co.uk/acorn/about-us/case-studies/case-study-bbc/
I really do hope we can sort this today as it is gettign tiring going round in circles.
March 29, 2017 at 5:04 pm #1424682Hi There,
Where did you placed the last CSS code provided? I’m not seeing it on the Custom > Global CSS. I did go ahead added it, both rows has 500px height now. Clear your browser’s cache before you preview the page.
Thanks,
March 30, 2017 at 3:20 am #1425064OK – I had done it but for ease I wont argue.
see – http://www.acorn-as.com/about-us/case-studies/
this is the live site. the wording needs to be aligned to the centre, which it was until you provided that code. I have used vertical-align:middle; already and it wont work..
ideas? this is very urgent now as it is on a live site.
March 30, 2017 at 4:26 am #1425132Hi,
Please use height instead of minimum height in your rows.
I change the css code to this.
@media (min-width: 768px) { .x-section .my-section { height: 500px !important; } }
Just make sure everything is visible with that height.
Hope that helps.
-
AuthorPosts