Tagged: x
-
AuthorPosts
-
February 23, 2017 at 3:40 pm #1383471
ajrenkParticipantFebruary 23, 2017 at 11:02 pm #1383880
FriechModeratorHi There,
Thank you for the screen-cast, for the first section height I saw this on your custom CSS.
#x-section-1 { min-height: 100vh; }Please update that to.
.home #x-section-1 { height: calc(100vh - 90px); }You might also need to remove the huge paddings that you applied on the columns.
That issue with the button seems to be happening only on small device (480px and smaller screens). Since that screen is too narrow for two buttons lets keep make it stack and centered. Add this on your custom CSS.
@media (max-width: 480px) { .home #x-section-1 .x-block-grid {text-align: center;} .home #x-section-1 .x-block-grid .x-btn.x-btn-square {margin: 0 !important;float: none;} }Hope it helps, Cheers!
February 24, 2017 at 10:14 am #1384369
ajrenkParticipantYou guys are SO GOOD! Thank you!
February 24, 2017 at 10:20 am #1384374
ajrenkParticipantWhen I added the new CSS code… this is what it looks like on mobile… The first section overlaps the second…
February 24, 2017 at 10:35 am #1384391
ajrenkParticipantCan you help with these too on mobile? Just trying to tighten it up…
Finally, can I change the CATEGORY ARCHIVE title to some thing like “CATEGORY NAME ARTICLES”.
February 24, 2017 at 10:36 am #1384393
ajrenkParticipantOopps! SHORT VIDEO
THANK YOU!
February 24, 2017 at 4:47 pm #1384744
Nabeel AModeratorHi again,
– To remove the space from your first section and removing background image in smaller screens:
@media screen and (max-width: 767px) { .home #x-section-1 h1 { margin-top: 0 !important; } .home #x-section-2 { background-image: none !important; background-color: rgb(0, 33, 66) !important; } }– Your subscribe button looks good in iPhone, Can you please share a screenshot of the problem so we can take a closer look?
– Changing category archive text to something else for each category can be possible with some custom scripts. For example for your Leadership Category (which has the category ID 7) you can do this, get the category ID and use the following code:
jQuery(document).ready(function($){ $('.category-7 .h-landmark span').html('Leadership'); });For the Self Awareness category, you can replace the previous with this:
jQuery(document).ready(function($){ $('.category-7 .h-landmark span').html('Leadership'); $('.category-8 .h-landmark span').html("Self Awareness"); });Don’t forget to clear your browser’s cache after adding the code. Let us know how this goes!
February 26, 2017 at 9:50 pm #1386769
ajrenkParticipantThank you! Where do I put the JQuery code?
February 26, 2017 at 9:57 pm #1386773
ajrenkParticipantThank you! Where do I put the JQuery code?
Also, attached is what I am seeing on the SUBSCRIBE button on iPhone 6 plus. Cuts off bottom border
February 26, 2017 at 11:23 pm #1386852
ChristopherModeratorHi there,
Please add following code in Customize -> Custom -> Global CSS :
.x-block-grid { overflow: visible; }Don’t forget to clear cache.
jQuery codes should be added in Customize -> Custom -> Global JavaScript
Hope that helps.
February 27, 2017 at 12:44 pm #1387659
ajrenkParticipantThank you!
One question on removing background from the section on mobile.
I added your code:
@media screen and (max-width: 767px)
.home #x-section-1 h1 {
margin-top: 0 !important;
}
.home #x-section-2 {
background-image: none !important;
background-color: rgb(0, 33, 66) !important;
}
}But it remove the image background across all platforms…
February 27, 2017 at 2:42 pm #1387833
Nabeel AModeratorHi again,
Just checked the code and it had a missing bracket, please update the code with this:
@media screen and (max-width: 767px) { .home #x-section-1 h1 { margin-top: 0 !important; } .home #x-section-2 { background-image: none !important; background-color: rgb(0, 33, 66) !important; } }Let us know how this goes!
-
AuthorPosts
- <script> jQuery(function($){ $("#no-reply-1383471 .bbp-template-notice, .bbp-no-topic .bbp-template-notice").removeClass('bbp-template-notice'); }); </script>
