
-
AuthorPosts
-
August 25, 2016 at 4:59 pm #677662
Hi,
I need to remove the link on the center text of the screen. The big text is “Umroh Plus Dubai 2016: Menjadi Yang Terdepan!” which background color is green.
I provide the link in the private content text box.
Thank you!
WahyuAugust 25, 2016 at 6:09 pm #677697Hi wahyudotasia!
#top .alternate_color.title_container .main-title {
pointer-events: none;
cursor: default;
}Add the following to the Custom CSS and let us know if it is what you needed.
Please also make sure to clear the cache that is active!Thanks a lot
Cheers!
BasilisSeptember 3, 2016 at 1:07 am #681494Hi Basilis,
Thank you for your replay. I’ve implemented the css code well and got the result as you suggested. However, I need to actually get rid off the link element (a href) from the heading. Although the css code remove the pointer events (click one between other), the link element still resides there.
Oh, there is another question. I need to fix the detected issues regarding the broken anchors. I tried to see the page’s View Resource code but couldn’t find any code such as http://www.denaumrohindonesia.com/#prev, etc. (Screenshot attached in Private Content box.)
Waiting your reply to make the modification soon.
Thank you,
Wahyu-
This reply was modified 8 years, 11 months ago by
wahyudotasia.
September 7, 2016 at 5:44 am #682942Hi,
Please add this in the functions.php file:
// custom script add_action( 'wp_footer', 'ava_custom_script' ); function ava_custom_script() { ?> <script type="text/javascript"> (function($) { function b() { $('.main-title.entry-title').removeAttr('href'); } b(); })(jQuery); </script> <?php }
Where did you get the url with the “/#prev” anchor?
Best regards,
IsmaelSeptember 8, 2016 at 7:02 pm #683848Hi,
Thank you for your reply. It works well.
The url with the “/#prev” anchor is from a seo audit software. However, I cannot find the /#prev in the page. I will leave it for now. If you get an idea, please let me know.
Thank you,
WahyuSeptember 10, 2016 at 7:20 am #684427 -
This reply was modified 8 years, 11 months ago by
-
AuthorPosts
- You must be logged in to reply to this topic.