• Resolved rexomus

    (@rexomus)


    All hyperlinked words in my blog posts for beetech theme break paragraph form and auto align left. Paragraph structure and readability of posts is broken because any word hyperlinked in posts will automatically shift to the next line of text and align to the left. I can’t figure out why this is happening or how to fix it. Can someone please help? Thank you

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi,
    The reason is default anchor element is styled as display: block; in
    style.css.

    This is how it is now:

    a {
    	text-decoration: none;
    	color: #535353;
    	display: block;
    	transition: all ease 0.3s;
    	-webkit-transition: all ease 0.3s;
    	-ms-transition: all ease 0.3s;
    }

    What you can do is remove display:block; property by going to the customizer and editing style.css file. But this will (probably) display all your <a> elements as inline.

    Another solution solution could be to use Additional CSS: Appearance > Customize > Additional CSS and put this:

    div.entry-content p a {
       display: inline;
    }

    Hope this helps.

    Thread Starter rexomus

    (@rexomus)

    Thank you, Thank you, Thank you! I added the code you suggested to Additional CSS and it fixed the problem. Again, thank you very much!!

    No problem! Glad I could help ??

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Hyperlink words in post break up paragraphs and auto align left’ is closed to new replies.