Tagged: cornerstone
-
AuthorPosts
-
October 30, 2016 at 4:14 pm #1236950
Hi,
1. I am trying to have an image displayed bigger than the underlying column is.
The ebook image should be displayed beyond the row and column dimensions.Screenshot here:
https://www.evernote.com/l/AKUGfDynLktNapzYDmq9YR1jlU7fKhli-CkB/image.pngis that possible with X?
2nd questions:
There is a padding in the column below the text box? how can i remove it?
http://screencast.com/t/Gf4nqOPwsOctober 30, 2016 at 4:16 pm #1236951This reply has been marked as private.October 30, 2016 at 9:46 pm #1237279Hi there,
Thanks for writing in.
Negative margin will break it, instead, use relative positioning with negative offsets. Example, in your image’s style input you can add this
position: relative; top:-50px;
Hope this helps.
October 31, 2016 at 5:51 am #1237676Thanks for your reply!
We are almost there! How can i have the bottom of the ebook also exceed the bottom edge of the brow row.
See here: https://www.evernote.com/l/AKX2Ixozn1VF5oOuWawlqcmyr5NNwvfAGacB/image.png
And how can i remove the padding in a column after a text box pls?
Thanks in advance
GeraldOctober 31, 2016 at 6:40 am #1237718Hi there,
Please edit image’s style filed and remove
top: -50px;
inline CSS. Add following code instead :margin-top:-50px;margin-bottom: 0;
Please add following code in Customize -> Custom -> Global CSS :
@media (min-width:906px){ .home div#x-section-2 { height: 213px; } }
To remove margin, add
class="mbn"
attribute to<p>
tag.e.g:
<p class="mbn"><strong>In nur 3 Schritten zum Ihrem Anwalt:</strong></p>
Hope it helps.
November 1, 2016 at 5:33 am #1238960Works! Thank you! 🙂
November 1, 2016 at 5:42 am #1238965You’re welcome.
-
AuthorPosts