-
AuthorPosts
-
April 28, 2017 at 8:38 pm #784798
Hi
Getting ready to launch for Monday, so cleaning up display issues.
In this thread here: https://kriesi.at/support/topic/section-titles/ the solution worked very well, however, on an iPhone, I don’t see the small arrow that points down to the next section. How can I get this arrow to display on iPhones for section titles (even though it does not link anywhere)?
Thanks
LyseApril 28, 2017 at 8:39 pm #784800Hi
Forgot to give me you my website link: crescendo.staging.wpengine.com
My section titles custom ID CSS code is:
#av_section_titles {
background-color: #4c4d4f!important;
border-top: 10px solid #ec5548!important;
height: 115px!important;
color: #ffffff!important;
margin-top:20px;
margin-bottom:20px;
}Lyse
April 28, 2017 at 9:15 pm #784812Hi!
You would need media queries to make it work as your request
Cheers!
BasilisApril 28, 2017 at 9:32 pm #784816Hi Basiis,
You mean something like this (keeping same CSS code?):
@media screen and (max-width: 989px) {
#av_section_titles {
background-color: #4c4d4f!important;
border-top: 10px solid #ec5548!important;
height: 115px!important;
color: #ffffff!important;
margin-top:20px;
margin-bottom:20px;
}
}Thanks for the quick response!
LyseApril 29, 2017 at 12:11 am #784856Hi Basilis,
I see that on the iphone there is one section that does display the down arrow, but incorrectly. That section is VOTRE PARTENAIRE. Is is the fact that the title is longer than the others?
Any help in making this work would help.
Thanks
LyseMay 1, 2017 at 12:42 pm #785672Hi,
Please try adding this code to the Quick CSS section under Enfold > General Styling or to your child themes style.css file:
@media only screen and (max-width: 480px) { .avia_transform .av-extra-border-element.border-extra-arrow-down .av-extra-border-inner { top: -20px; } }
Best regards,
YigitMay 1, 2017 at 3:21 pm #785783Hi Yigit,
I tried the CSS code snippet, but added the section IDs as it is a global change I want to apply for three pages. Here’s what I added
@media only screen and (max-width: 480px) {
#av_section_titles .avia_transform .av-extra-border-element.border-extra-arrow-down .av-extra-border-inner { top: -20px; }
}
@media only screen and (max-width: 480px) {
#av_section_titles-first .avia_transform .av-extra-border-element.border-extra-arrow-down .av-extra-border-inner { top: -20px; }
}I’m sorry but the code does not work
Thanks
LyseMay 1, 2017 at 3:59 pm #785815Hi,
Try inserting this css code in the media query (max-width:480px):
#av_section_titles { min-height: 140px; }
Hope this helps.
Best regards,
NikkoMay 1, 2017 at 4:27 pm #785836Hi Nikko,
I see a down arrow for section titles that wrap into two lines but with a large gap between the arrow and the title container.
However,
on this page: https://www.impactcrescendo.com/releve/ which has single line title, it displays perfectly
on this page: https://www.impactcrescendo.com/coaching/ there is also a single line title but it does not display a down arrow
on the home page: https://www.impactcrescendo.com/accueil/ none of the single line titles display correctly.I think we are getting closer to a solution….
Thanks
LyseMay 2, 2017 at 3:51 pm #786453Hi Lyse,
Seems like there’s caching issue on your site, which prevents css changes to be shown, also the code I gave you please remove it and replace it with this:
@media only screen and (max-width: 480px) { #av_section_titles { height: auto !important; } }
Hope this helps.
Best regards,
NikkoMay 2, 2017 at 4:28 pm #786501Hi Nikko,
I purged my server cache and purged all cache. I replaced the CSS code but no change on my iphone. So I modified the background color of the sections, saw the change immediately and noticed the down arrow worked. So I put back my original color and once the cache cleared again, all section titles word perfectly!
Thank you so much for all of your time and patience.
Have a great day!
LyseMay 2, 2017 at 9:21 pm #786718Hi,
We are happy you can get it solved
Please feel free to let us know if there is anything else we can do for you.Best regards,
Basilis -
AuthorPosts
- You must be logged in to reply to this topic.