- This topic has 10 replies, 3 voices, and was last updated 8 years ago by Andrew Misplon.
- AuthorPosts
- September 9, 2016 at 5:45 am #4812
PastormacParticipantWhen I use block quotes in a blog post like this on the ultra theme, my words get broken up at the end of lines instead of maintaining the integrity of the words as it does here.
September 9, 2016 at 9:49 am #4814
Andrew MisplonKeymasterHi Pastormac
We ran into problems with very long strings, perhaps something like a long URL, running outside the boundaries of the blockquote. However, I can see that the fix we came up with causes the problem you’re having. Please, try this:
1. Go to Plugins > Add New, search for and install Simple Custom CSS.
2. Go to Appearance > Custom CSS and paste:/* Blockquotes */ blockquote { word-wrap: normal; word-break: normal; }
Hope that helps. The above snippet can be removed after the next update of Ultra. Thanks 🙂
September 21, 2016 at 9:39 pm #4958
dcseltzerParticipantHi Andrew – I am having the same issue with block quotes. I just tried your code above in Custom CSS and it is not fixing the problem. Words are getting cut off and not wrapping correctly.
September 22, 2016 at 6:36 pm #4960
Andrew MisplonKeymasterHi dcseltzer
Please, send a link and we’ll take a look. Thanks.
September 25, 2016 at 5:58 pm #4984
dcseltzerParticipantHi Andrew,
You can see an example of the problem in the sidebar (lower right of page in the Meet our Contributors section):
Don’t Build on Someone Else’s Land: Why Email Marketing is Hot Again
thanks for your help!
DianeSeptember 25, 2016 at 6:03 pm #4985
Andrew MisplonKeymasterThanks. Your Custom CSS has an error, nothing will load after this point:
/* Full Width No Page Title Templates */ body[class*="full-width-no-title-php"].sidebar #primary { float: none; border-right: none; width: 100%;
There is no closing bracket after the
width: 100%
rule so everything after that is nullified.September 25, 2016 at 6:08 pm #4986
dcseltzerParticipantHmm.. I just added a closing bracket & look what it did to my home page – everything is pushed left as if there is a sidebar…
September 25, 2016 at 6:11 pm #4987
Andrew MisplonKeymasterHave you perhaps gone over the rules in Custom CSS? If you remove them all, is the issue resolved?
September 25, 2016 at 6:17 pm #4988
Andrew MisplonKeymaster.sidebar #primary
is the issue. It has to do with the rule cascade/order. Just insert this at the very end of your Custom CSS to correct:.page-template-home-panels #primary { width: 100%; }
September 25, 2016 at 6:21 pm #4989
dcseltzerParticipantOK – so adding the end bracket after width: 100% and adding the last rule you just gave me seems to have fixed BOTH problems.
thanks so much!!
September 25, 2016 at 6:25 pm #4990
Andrew MisplonKeymasterAdding the closing bracket activated the rules below. You weren’t seeing them because they were broken before without the bracket. So, not related to the blockquote challenge. Glad to hear it’s all working now 🙂
All the best.
- AuthorPosts
You must be logged in to reply to this topic.