Edit html error on tumblr. - html

Why doesn't work the Edit Html section on Tumblr? When I go to the Customize section I click the edit html button and.. nothing happens. Could you help me please?

If it still isn't working, you could also possibly try opening the site in a different browser.

Related

Hide site contents link from wiki pages in Sharepoint Online

In a Sharepoint Online site I am using wiki (or traditional) pages for certains tasks and I need to hide the “Site Contents” link. This is my screenshot, and highlited, the link I need to remove:
On the Internet I found a post which says to manually insert a paragraph like #sideNavBox { display:none; } in the markup using the page editor.
Initially (after the click on the button OK) all seems ok, but when I publish the page the link comes back.
Other posts suggest different code but the editor seems to refuse all the styles I try to insert.
Any help will be appreciated, thank you.
Try to add the
#sideNavBox{
display:none!important
}
into a CSS file and upload it to SharePoint, then specify this CSS file to be used by this site.

Adding a link to HTML button on WordPress Astra Theme

I posted the same question earlier today that was closed but the problem I have has not been resolved.
Problem:
I am trying to add a link to a HTML main menu button on a WordPress Astra theme. If I use the following code the button is displayed with the correct formatting but does not link to the page I need it to:
<button class="wpmem_loginout" >Sign-In</button<>
If I use the suggested code that was provided in my last post:
Sign-In
The formatting of the button is removed but the link works as it should. I have included a picture of what I mean when I say formatting. The section on the left is with the format removed and the section on the right displays the button as it should look (Red with white text).
Does anyone have any further suggestions? I have also tried to use the suggested code and add CSS after to format the button properly. But that did not work either...
Thanks,
Guy
The button for you is not working because it has no functionality associated with it. Just add onclick function and change the location href to your required url. It will work fine.
<button class="wpmem_loginout" onclick="window.location.href='/sign-in'">Sign-In</button<>
Hope it helps. Revert for any doubts.

How do I make changes in HTML code of website on wordpress?

Website source:http://www.salefee.com/blog/
The above website is made on wordpress.In this I have an html code which looks like: <div class="image-title-bg loading" style="padding-top: 140px;">(found out using inspect element option in chrome)
I want to change the padding-top: to 50px,But I am not able to find it in admin panel. Basically I am trying to reduce the image size on my first page of blog. Please help me out with this problem. Thanks in advance!!
You probably will enjoy this WordPress plugin : Simple Custom CSS
;)
You will have to find the relevant file and make changes in it.
Tip: You can search that html tag line in php files.
To change html in Wordpress in admin part you should get to source of home page which can be usually found in Appearance Editor tab. Over there you can find php and html which you can edit. Or if you have FTP access you can track file there.

Tumblr custom theme disappears when logged out

I made a custom theme for a client's tumblr, but the blog is not showing up when the viewer is logged out of tumblr. When logged in, it looks perfect. The blog is http://www.openharborpictures.tumblr.com.
It seems to be related to the "Follow openharborpictures" and "Tumblr" buttons that appear at the top right (perhaps something in them is overriding my custom HTML?) but it could also just be a coincidence. Could not post all of the code, so it's here: http://pastebin.com/U5jctrVK. Any thoughts? Thanks in advance!
I don't think there's anything wrong with your code. Tumblr inserts more code using server scripts, something you can't do anything about. So for some reason parts of the new code is interfering with your code. It could be the Follow thing you mentioned, but we can't say for sure.
What I would suggest you do is in the custom theme panel, scroll right down to the bottom and click on "Advanced" tab, and then uncheck the "Promote Tumblr" option. This should disable the follow button when you are not signed in to Tumblr.
I can't guarantee that this will solve the problem. But it's worth a try. Let me know how it goes.
Set the body height to 100%
body { height: 100% }

I can not access some html code of a page

I’m trying to make web scraping in a web page, but there is code that I can’t reach. The part of the code of the page that I cannot achieve is accessed through an anchor tag. In the html is:
<a class="MTLink" href="#d192633539-47" title="example" >
But when I click on "#d192633539-47" does not appear what is intended, ie not appear that appears when I click on the link on the page. Instead appears another page.
Related to this I have also
<li id="d192633539-47" class="MainTabContent Hidden" tnIndex="192633539">
Someone can help me? What could be happening?
This element is controlled by JavaScript. Without tracing the JS code you cannot determine the intention of the click event.
There might be a problem with wrong cookie handling. Check it out.