Tagged: x
-
AuthorPosts
-
March 28, 2016 at 10:48 pm #856075
I’ve tried many different css you have listed on other related posts. The image is reduced on PC full screen but as you scale down the browser as for various media (responsive) it looms large again before scaling down. For tablets its huge. Currently using this one.
@media (min-width:970px){
.blog .entry-featured {
width: 30%;
margin: 15px auto;
}
}March 28, 2016 at 10:48 pm #856077This reply has been marked as private.March 29, 2016 at 1:25 am #856250March 29, 2016 at 5:18 am #856528The featured image begins to reduce in size as the page scales down then jump up in size when it reaches around tablet size making it too large… it then continues to reduce as it gets smaller.
I also loose my formatting (background images drop out) as it gets to tablet size. As your screen shot shows – background image is gone.
March 29, 2016 at 7:06 am #856690Hi There,
Your background image will only display on a screen width larger than 1300px (desktop), because you have the background CSS code inside a @media query.
About the feature; you have the image
width: 30%
under a screen of 1300px, that is why when you resize the browser window and it reach below 1299px, the featured image jump back to its default width which is 100%.You can move those code outside the @media query block, so they will become consistent (affects both mobile and desktop).
Hope it helps, Cheers!
March 29, 2016 at 5:02 pm #857566Many thanks!
March 29, 2016 at 5:43 pm #857620This reply has been marked as private.March 29, 2016 at 11:33 pm #858070Hi there,
Thanks for updating.
You can add this under Custom > CSS in the Customizer..buddypress.activity .activity-inner img { display: block; width: 300px; }
Let’s change the width or add more CSS if needed.
Cheers!
March 30, 2016 at 1:41 am #858229This reply has been marked as private.March 30, 2016 at 2:44 am #858297Hi there,
Please update both X and cornerstone.
To fix the issue with card elements, please try to reduce the card padding to 5%.
Hope it helps.
March 30, 2016 at 3:40 am #858354Updated x and cornerstone. Padding reduced to 5%. Still losing items off card fronts now at screen 705 width. The larger purple card drops items at 766
March 30, 2016 at 4:50 am #858414Hi Gnosis,
To fix the issue, add following CSS under Custom > CSS in the Customizer:
.x-card-outer .x-face-content { width: 100%; }
If you have any additional questions at this time we kindly ask that you open them up in a separate thread. The longer threads get in the forum, they become more difficult to support as they tend to drift off topic and they also make it troublesome for users trying to search for solutions. Keeping threads relevant to their original inquiry ensures that we can keep better track of what has been resolved and that users can more effectively find answers to similar issues they might be experiencing.
Thanks!
March 30, 2016 at 4:56 am #858426Yep… did the trick! and will do separate threads in the future. Cheers!
March 30, 2016 at 5:38 am #858477Glad we could help you with this.
-
AuthorPosts