-
AuthorPosts
-
November 26, 2014 at 1:34 pm #153429
Quick question. Visual composer won’t let me center the top image on this page. http://blackmirrordemos.croutch.ca/jordan/?page_id=6 How do I center images, they seem to default to left justification. Regularly visual composer gives options for this, but not with x theme?
November 27, 2014 at 12:41 am #153743Hey there,
Please see http://prntscr.com/5ala0e. Your image setup is weird. Please place your image inside a container with a
center-text
class. If that doesn’t work, please give us access to your WordPress admin so we could see your setup.Thanks.
November 29, 2014 at 6:12 am #154944This reply has been marked as private.November 30, 2014 at 12:37 am #155194This reply has been marked as private.November 30, 2014 at 6:52 pm #155447This reply has been marked as private.December 1, 2014 at 2:43 am #155620Hey there,
I’ve added
margin: 0 auto; display: block;
in the Style attribute of the image to center it (see http://prntscr.com/5c0jqb).The
center-text
class should be applied to the container of the image but since you’ve place the image and text in one container, it’ll make the text centered as well so you need CSS to align the image alone.Hope that helps. 🙂
December 1, 2014 at 1:46 pm #156052This reply has been marked as private.December 1, 2014 at 3:34 pm #156123Hi there,
I checked that last page link and it look centered on my end. Could you please verify or maybe send us a screenshot of what you are seeing, thanks!
December 2, 2014 at 8:55 am #156593This reply has been marked as private.December 2, 2014 at 9:38 am #156618Hi there,
Unfortunately it’s 3rd party plugin issue and it’s not possible with simple CSS.
Regarding to hide featured image please add the following CSS code under Customize -> Custom -> CSS:
.single-post .entry-featured { display: none; }
Hope it helps.
December 2, 2014 at 10:21 am #156660Hi there,
to remove the featured image on single posts please use the following CSS:
.single-post .entry-featured { display: none; }
To center the plugin, how are you calling it? Are you putting it inside a content band, a div?
You can use the following CSS to center it on this post alone:
.postid-6702 .iGalleryContainer { width: 30%; margin: 0 auto; Left: 0.5%; } @media screen and (max-width: 1310px) { .postid-6702 .iGalleryContainer { width: 30%; margin: 0 auto; Left: 0.5%; text-align: center; display: block; } } @media screen and (max-width: 969px) { .postid-6702 .iGalleryContainer { width: 50%; margin: 0 auto; Left: 0.5%; text-align: center; display: block; } } @media screen and (max-width: 600px) { .postid-6702 .iGalleryContainer { width: 100%; margin: 0 auto; Left: 0.5%; text-align: center; display: block; } }
Note: the solution above isn’t perfectly smooth. As the responsiveness doesn’t scale the centering.
It might be better to put two containers around it and have the inner container center itself on the outer one.
Then have the outer one scale down in width as the screen scales.If you need help with above, it might be best to provide us with a login so we can tailor a solution for you,
just make sure to make the reply private so only support staff can view the information.Hope this helps!
December 2, 2014 at 11:05 am #156690This reply has been marked as private.December 2, 2014 at 12:59 pm #156790Hi there,
You can add the CSS under Custom > CSS in the Customizer or if you are using a child theme, you can put it directly in the style.css file.
If you are wanting to target just this post add .postid-6702 to the selector like so:
.postid-6702 .single-post .entry-featured { display: none; }
Hope this helps!
-
AuthorPosts