Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #853726

    BradN
    Participant

    Is there anything I can code in to prevent my pullquote from adding a linebreak, or a line above the quote?

    Essentially I just need the text to continue flowing, much like it does around the images.

    Thanks,

    B

    #853727

    BradN
    Participant

    Image exceeded limitations, sorry!

    #853841

    Christian
    Moderator

    Hey there,

    Please give us the URL of the page and access to your WordPress admin in a private reply so we could check your setup.

    Thanks.

    #853857

    BradN
    Participant
    This reply has been marked as private.
    #853868

    BradN
    Participant

    Also 🙂 While you’re on that page, can you tell me why the right hand column isn’t aligned vertically with the other components in the page? I don’t have any padding or margins that I am aware of.

    http://awesomescreenshot.com/0155qpeb6d

    Thanks,

    Brad

    #853904

    BradN
    Participant
    This reply has been marked as private.
    #853923

    Christian
    Moderator

    I’ve added the class nmb in your text element. Then, added the code below in your page’s Cornerstone CSS.

    .nmb p {
      margin-bottom: 0
    }

    Regarding the right hand column, that is because that column is a part of the content (see attachment). You should use the sidebar for it and not Cornerstone column. For more details on X Sidebars, please see https://community.theme.co/kb/unlimited-sidebars/

    For the boxes, Please add the code below in your Appearance > Customize > Custom > CSS.

    .hentry {
        margin-top: 0;
    }

    Hope that helps. 🙂

    #854529

    BradN
    Participant

    Your support is greatly appreciated.

    Ok I simply uploaded a new functions.php to resolve my boxes being messed up on the home page.

    I switched over to a sidebar layout per your suggestion, but the padding/alignment is still incorrect.

    The homepage sidebar is aligned perfectly – http://awesomescreenshot.com/01d5qqdr7e

    But the post pages the alignment is off significantly? http://awesomescreenshot.com/03a5qqdt1e

    Also the pullquote workaround you provided helped, but it didn’t totally remove the issue. WP seems to still be putting <p> </p> around portions of my paragraph. http://awesomescreenshot.com/0515qqdwac

    Thanks!!!

    #854623

    Christian
    Moderator

    Please add the code below in your Appearance > Customize > Custom > CSS.

    .x-sidebar .widget {
        margin-top: 0;
    }

    Regarding the pullquote, I’m sorry but there’s currently no solution for this. It would be best to place the pullquote after your paragraph.

    Thanks.

    #854683

    BradN
    Participant

    Understood about the pullquote.

    Thanks for continuing to work on this. The first widget lines up perfectly, but now any subsequent widgets don’t have any space between them or padding.

    Is there a way to isolate the above code to the top widget in the sidebar only, leaving any below to maintain spacing?

    Thanks!!

    Brad

    #854684

    BradN
    Participant

    Actually figured it out, was was simple as adding a bottom margin.

    .x-sidebar .widget {
    margin-top: 0;
    margin-bottom: 30px;
    }

    #854685

    Rue Nel
    Moderator

    Hello Brad,

    We are just glad that you have figured it out a way to correct the said issue.
    Thanks for letting us know!

    Best Regards.

    #857996

    BradN
    Participant

    Wanted to followup regarding the pullquote. If I columnize the post, the pullquote operates exactly as I would want it to, so are you sure there is no workaround to get the pullquote to work as desired without columnize?

    Also noticed that inserting images into the text does not cause this issue either – we are able to get text to flow around images and columnized pullquotes, but text breaks when using pullquotes in a regular non-columnized container.

    Thanks!

    #858224

    Christian
    Moderator

    Hey there,

    Blockquotes are note designed to be inside a paragraph. We do not support this setup. Though it is technically possible to tweak, actual implementation of it falls outside the scope of our support. You might want to check https://www.smashingmagazine.com/2008/06/block-quotes-and-pull-quotes-examples-and-good-practices/

    Thanks.