Viewing 11 posts - 1 through 11 (of 11 total)
  • Author
    Posts
  • #478767

    Hi,

    Whenever I manually code links to images or texts, there’s an automatic formatting applied to it which I don’t want it to happen. How do I remove it?

    My code in a page is:
    Click <a href="http://localhost/mc/index.php/gallery/">here</a> to view our gallery.

    But it is formatted to as below. It creates some unknown new lines.

    "
    Click "
    <a href="http://localhost/mc/index.php/gallery/">
    " to view our gallery.
    "

    I’ve also code some manual links to image:

    Enfold auto creates some hover effect to it. How do I remove it?

    #478816

    Hi etheravion!

    Can you please show us an example, so we can understand, what you are doing and where you are doing it?

    Regards,
    Basilis

    #479078

    Hi,

    You can refer demo website.

    1. Rollover the big header banner. You can see the hover effect. That’s the hover effect I want to remove.
    2. Click on Gallery at homepage. Scroll will display. Look at the text Click here, it is auto formatted with new line.
    3. When I set any image with link () within a page or post, that image will disappear.

    #479085

    Hi!

    Please add following code to Quick CSS in Enfold theme options under General Styling tab

    .image-overlay { display: none !important; }
    a:hover, a:focus, a:visited {
        text-decoration: none;
    }
    .sidebar, .content {
        border: none!important;
    }

    Regards,
    Yigit

    #479094

    Hi Yigit!

    Thanks! No. 1 works. How about No. 2 and 3?

    #479097

    Hey!

    Can you please change the second code to following one and try again

    a:hover, a:focus, a:visited, a {
        text-decoration: none !important;
    }

    If that does not help, please post a screenshot and show the changes you would like to make for #2 and #3. Codes i provided should have worked, maybe i am misunderstanding you :)
    You can upload your screenshots on imgur.com or Dropbox public folder and post the links here.

    Regards,
    Yigit

    #479104

    No. 2 and 3 still doesn’t work.

    For No. 3, I use this code on an image within a page, then the image will disappear. When I remove hyperlink, the image will appear back. Can’t capture screenshot, just think of the image cannot be seen on the screen anymore.
    <a href=""><img src=""></a>

    #481294

    Hi!

    Sorry for the late reply!
    Have you figured it out already? This is how it looks on my end – http://i.imgur.com/DYtDoWo.png

    Best regards,
    Yigit

    #481296

    Hi,

    Nope, still can’t solve it. The text should be in one line. Not 3 lines. If I remove the hyperlink, then it will become one line.

    Somehow hyperlinks will auto embed some sort of formatting.

    #481297

    Hey!

    Please add following code to Quick CSS

    .scroll-text-gallery a {
        display: inline-block!important;
    }

    Best regards,
    Yigit

    #481347

    Thanks Yigit! Works great!

Viewing 11 posts - 1 through 11 (of 11 total)
  • The topic ‘Remove Auto Formatting to Links’ is closed to new replies.