• Resolved Artneo

    (@artneo)


    I sent my blog to Facebook Instant Articles. Now the process is stopped in a place I don’t know how to advance.

    Image of their request: http://imgur.com/a/4fz6v

    What they are asking:

    Please include all of the images found in the web article. Also, please make sure that the tag is not wrapped in <p> tags which will cause the image to not render correctly:
    https://developers.facebook.com/docs/instant-articles/reference/image

    <html lang="en" prefix="op: http://media.facebook.com/op#">
    <head>
    <meta charset="utf-8">
    <link rel="canonical" href="https://blog.youdivi.com/tutorials/link-animation-post/">
    <meta property="op:markup_version" content="v1.0">
    </head>
    <body>
            <article><header><!-- Analytics code --><!-- title --><h1>Link animation in a post</h1>
    
    				<!-- kicker -->
    				<h3 class="op-kicker">
                       CSS                </h3>
    
                    <!-- publication date/time -->
    				<time class="op-published" datetime="2017-08-04T16:32:12+00:00">04/08/2017, 16:32</time><!-- modification date/time --><time class="op-modified" datetime="2017-08-12T11:32:06+00:00">12/08/2017, 11:32</time><!-- author(s) --><address>
                        <a>Andre</a>
                        Hey! I am focused on learning new CSS and JS tricks everyday to be a successful front-end developer someday.                </address>
    
    				<!-- cover -->
    				                    <figure><img src="https://blog.youdivi.com/wp-content/uploads/2017/08/Link-animation-in-a-post.jpg"></figure></header><!-- body --><p>Welcome back to another tutorial focused on the <strong>Extra theme</strong>. In this tutorial, you’ll learn how to <strong>add link animation in a post</strong>. Some people like to have all their links in their projects with <em>text-decoration: underline</em>.</p>
    <p>Some people rather not having any underline at all – just a different color to <em>highlight</em>.</p>
    <p class="preview lev"><a href="https://goo.gl/GwdYut">Preview</a></p>
    <p><strong>If you are like me</strong> and want a <strong>neat/fancy link animation</strong> in a post that when you hover over it starts a micro animation… You’re in the correct tutorial.</p>
    <p>¯\_(ツ)_/¯</p>
    <p><strong>First</strong>, one quick design tip:</p>
    <blockquote>
    <p>Never use underline in your text if it’s not meant to be a link. It confuses the user. Furthermore, it doesn’t add to the page design.</p>
    </blockquote>
    <p>One more thing!</p>
    <p>I won’t show you in this tutorial how to change all website links because a lot of <em>Modules</em> use links that aren’t good with this underline animation. <strong>Let’s stick with only the links inside your posts</strong>, ok?</p>
    <p>I learned this nice link effect browsing the internet for design ideas for <strong>link hovering effects</strong>.</p>
    <p><strong>Then</strong>, I found <a href="http://bradsknutson.com/blog/css-sliding-underline/">this post</a> from the website <a href="http://bradsknutson.com/">bradsknutson.com</a> – and I really liked the example <strong>Underline – Slide In, Slide Off</strong>. You should visit the link and check out all the links animation available there.</p>
    <p>This is right now the link animation that I use in <a href="https://blog.youdivi.com">YouDivi blog</a>. Hope you liked it!</p>
    <p><strong>Without further ado</strong>, let’s start!</p>
    
    				
    			 <!-- .et_pb_text -->
    				<h2>How to have a link animation in a post</h2>
    			 <!-- .et_pb_code -->
    			 <!-- .et_pb_column -->
    			 <!-- .et_pb_row -->
    				
    			 <!-- .et_pb_section -->
    				
    				
    				
    					
    				
    				
    				
    				
    				
    				
    				
    				
    				
    					
    <p>When you’re blogging there are <strong>2 ways</strong> to write the blog posts using <em>WordPress</em> with the <em>Extra</em> theme:</p>
    <ul>
    <li>Using the Divi builder Modules;</li>
    <li>Using plain text, without triggering the Divi builder.</li>
    </ul>
    <p><strong>Next</strong>, I’ll show both <em>CSS</em> to make it look exactly like the demo in both situations.</p>
    <h2>Using the Divi builder Modules</h2>
    <p>Add the following CSS code inside <strong>Extra > Theme Options > Custom CSS</strong>.</p>
    <pre>/* -- Links -- */
    .et_pb_blurb_container p a, .et_pb_pagebuilder_layout .et_pb_text a {
     display: inline-block;
     position: relative;
    }
    .et_pb_blurb_container p a:before, .et_pb_pagebuilder_layout .et_pb_text a:before {
     content: '';
     display: block;
     position: absolute;
     left: 0;
     bottom: 0;
     height: 2px;
     width: 100%;
     transition: width 0s ease;
    }
    .et_pb_blurb_container p a:after, .et_pb_pagebuilder_layout .et_pb_text a:after {
     content: '';
     display: block;
     position: absolute;
     right: 0;
     bottom: 0;
     height: 2px;
     width: 100%;
     background: #5db8ff;
     transition: width .3s ease;
    }
    .et_pb_blurb_container p a:after:before, .et_pb_pagebuilder_layout .et_pb_text a:hover:before {
     width: 0%;
     background: #5db8ff;
     transition: width .3s ease;
    }
    .et_pb_blurb_container p a:hover:after, .et_pb_pagebuilder_layout .et_pb_text a:hover:after {
     width: 0%;
     background: transparent;
     transition: width 0s ease;
    }</pre>
    <blockquote>
    <p>Remember to adjust the height and color properties to better suit your project design needs.</p>
    </blockquote>
    <p>If you are like me and rather writing your blog posts without <em>Divi builder</em>, check the next <em>CSS</em> code.</p>
    <h2>Using plain text, without triggering the Divi builder.</h2>
    <p>Add the following CSS code inside <strong>Extra > Theme Options > Custom CSS</strong>.</p>
    <pre>/* -- Links -- */
    div.post-content.entry-content a {
     display: inline-block;
     position: relative;
    }
    
    div.post-content.entry-content a:before {
     content: '';
     display: block;
     position: absolute;
     left: 0;
     bottom: 0;
     height: 2px;
     width: 100%;
     transition: width 0s ease;
    }
    
    div.post-content.entry-content a:after {
     content: '';
     display: block;
     position: absolute;
     right: 0;
     bottom: 0;
     height: 2px;
     width: 100%;
     background: #5db8ff;
     transition: width .3s ease;
    }
    
    div.post-content.entry-content a:hover:before {
     width: 0%;
     background: #5db8ff;
     transition: width .3s ease;
    }
    
    div.post-content.entry-content a:hover:after {
     width: 0%;
     background: transparent;
     transition: width 0s ease;
    }</pre>
    
    				
    			 <!-- .et_pb_text -->
    				
    				
    				
    					
    <h2>Conclusion</h2>
    <p>How did you like this tutorial about <strong>adding link animation in a post</strong>?</p>
    <p><strong>If you liked it</strong>, there are plenty more styles for links to learn how to use. Leave a comment if you want more tutorials like this. <strong>Your feedback is always important to me</strong>.</p>
    <p>See ya!</p>
    
    				
    			 <!-- .et_pb_text -->
    			 <!-- .et_pb_column -->
    			 <!-- .et_pb_row -->
    				
    			 <!-- .et_pb_section -->
                <footer></footer></article>
    </body>
    </html>
    

    Awesome plugin! Everything works so fine. I just can’t make Facebook Instant Articles work yet. But, I know it’s possible. Thanks a lot!

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

Viewing 15 replies - 1 through 15 (of 16 total)
  • Hi @artneo,

    I don’t know exactly, but can this might be the cause? ¯\_(ツ)_/¯?

    Can you check again by removing it?

    Thread Starter Artneo

    (@artneo)

    Ok, I’ll remove the ¯\_(ツ)_/ and run the tests again. Thanks.

    Hi @artneo,

    Any updates on this?

    Thread Starter Artneo

    (@artneo)

    Not yet, they ask for 3 – 5 days. But, I’m optimistic because I could click to send again after making the changes, so it may pass now.

    I’ll update this thread as soon as I get an answer.

    Thanks!

    Thread Starter Artneo

    (@artneo)

    “Congratulations, you are now approved to publish Instant Articles!”

    Image: http://imgur.com/a/fM30y

    Thanks so much for the support.

    That’s great! 🙂

    Thread Starter Artneo

    (@artneo)

    Thanks again! 🙂

    Hi i have some problem here how to resolve it?

    Hi @ariefmhasan,

    What problems are you facing?

    Good day Marqas,
    am having the same issue trying to connect my wordpress blog and make facebook approve my instant article. This error prompted “Add Text, Embeds or Media”.
    can you guide me achieve this.

    Thanks

    Hi @melagogz,

    Can you tell me what are the steps you have followed?

    Hi

    I have same problem you had. can you just tell me how to fix ? @artneo

    Hi

    @marqas can you help me to fix this issue

    I am also facing same problem

    Code is given below:-

    <html>
    <body><article><p>इंटरनेट की तरक्की ने पिछले 10 साल में Porn Industry को एक नए मुकाम पर ला दिया है। नतीजतन, जहां पहले मुख्यधारा का मीडिया Porn Stars के इंटरव्यू लेने से कतराता था, वहीं अब इनमें होड़ लगी होती है। लेकिन Porn Stars को पता नहीं होता कि कैसे मीडिया को हैंडल करे। ऐसे में कई बार वो विवाद में भी पड़ जाती हैं और अपना नुकसान कर बैठती हैं।</p>
    <p>इसी परेशानी को समझते हुए, Free Speech Coalition को शुक्रवार यानी 26 जनवरी 2018 को Adult Entertainment Expo (AEE) के दौरान Les Vegas के Hard Rock Hotel’s Paradise Tower में बने Studio B में free media training session, adult industry में काम करने वाली सभी लोगों के लिए कर रहा है। ट्रेनिंग सेशन दोपहर २.३० बजे से शुरु होगा।</p>
    <p>Free media training session देने वाले FSC Communications Director Mike Stabile का फोकस Twitter से लेकर red carpet तक होने वाले मीडिया interactions में खुद को बेहतर ढंग से पेश करने पर रहेगा।</p>
    <p>Mike के मुताबिक, Adult Industry के लोगों को पता नहीं होता कि कैसे सही ढंग से मीडिया के सवालों के जवाब दिए जाए, कैसे ऑन रिकॉर्ड या ऑफ रिकॉर्ड बात कही जाए, कैसे सही जानकारी किसी प्रॉजेक्ट के बारे में दी जाए, कैसे मीडिया में दी गई किसी गलत जानकारी को सही करवाया जाए इत्यादि।</p>
    <p>FSC से जुड़ने से पहले Mike ने adult industry में पत्रकार के तौर पर काम किया है। इसके अलावा, उन्होंने Buzzfeed, Daily Beast, Playboy और The New York Times के लिए काम किया है। उनकी कंपनी Polari Media ने Porn Industry के कई बांड्स के लिए मीडिया की रणनीति बनाई है।</p>
    <p>Note:</p>
    <p>www.pornnewshindi.com is the only portal which brings news about happenings in PORN INDUSTRY in Hindi languagewww.pornnewshindi.com एकमात्र साइट है जो हिन्दी भाषा में Porn Industry में होने वाली हलचल को आप तक लाती है।</p>
    <p>अगर साइट अच्छी लगे तो कृप्या, इसे जयादा से ज्यादा लोगों के साथ शेयर जरूर करें और इसे पढ़ते भी रहे। जल्द ही हम Andriod App भी लांच करने वाले हैं। धन्यवाद</p>

    <p>The post Porn Industry में काम करने वाले लोगों के लिए free media training session, Adult Industry के मशहूर पत्रकार Mike Stabile देंगे training appeared first on Porn News Hindi.</p>
    <header><time class=”op-modified” datetime=”2018-03-08T10:23:17-08:00″>2018-03-08T10:23:17-08:00</time><time datetime=”2018-03-08T10:23:17-08:00″ class=”op-published”></time><h1>Porn Industry में काम करने वाले लोगों के लिए free media training session, Adult Industry के मशहूर पत्रकार Mike Stabile देंगे training</h1></header><footer></footer></article></body>
    <head><link rel=”canonical” href=”https://pornnewshindi.com/porn-industry-training-session-for-porn-stars-by-fsc/”></head&gt;
    </html>

    FB error

Viewing 15 replies - 1 through 15 (of 16 total)
  • The topic ‘Facebook Instant Articles – Add Text, Embeds or Media’ is closed to new replies.