Is it possible to edit the Tumblr default archive page? - tumblr

The default Tumblr archive page does not adhere to any of the CSS styles that have been set for the rest of the site. Here is the default tumblr archive page:
Is it possible to override or change the CSS & HTML of this particular page?

The only way this may be possible to to 'add a page' at the bottom of your blog's 'edit theme' menu and give it a custom layout. The page url must be '/archive' and from there you are able to write alternative code...
However once saved, hovering over the '/archive' page in the Menu will tell you 'This page overrides a built-in url' and so your code will not be used.
In answer to your question, no. No it is not possible.

Related

Hide element on blog page

I am really a beginner, trying to improve my wife's Wordpress website. What I am wanting to do is to hide a certain element (of the header, in this case) on mobile only. I already managed to figure out the "name" of this element, which is .vc_custom_xyz. I also managed to hide this element by adding additional CSS to any given page. BUT: This doesn't work for the blog post page - which simply ignores all CSS that I add. Also, when I add CSS into the theme's additional CSS section by referring to the blog page ID. Any ideas to help me achieve this? Thanks...

Page redirects automatically to front page

I have a page in two languages, Norwegian and English. The English page, when applying &L=1, only redirects to front page. I have no idea what's wrong.
I tried enable Development settings, but no error. Also I disabled all content elements on page but no change. I disabled RealURL, no change.
TYPO3 6.2.29
maybe you build wrong links in your language switcher.
disable realurl and have a look what links are generated. you probably miss the uid of the current page in the parameter.
how do you generate the language switcher link? language menu?
enhance your question with your configuration.

How do I set the Facebook canvas to 'fluid'?

I'm making a page for my Facebook page, and I'd like it to be as wide as possible. I've created an app which pulls in the content, and have it set up both as an 'App on Facebook' and a 'Page Tab' (I wasn't sure which of those to use, so if anyone can advise me, I'd be grateful).
I've added the Page Tab to my Page, so it appears on the list in the left - it's pulling in the content from my site, which is great.
However, I can't get it to go wide. I've read quite a few things which say I need to set the canvas to 'fluid' under advanced settings (e.g. http://developers.facebook.com/blog/post/549/) - but I can't find advanced settings for my app! Under 'settings' I just get the basic options.
Has the canvas been removed, am I looking in the wrong place for the setting, or do I need to do something else to enable the advanced settings?
https://developers.facebook.com/apps/Your AppId/advanced - Then scroll to the bottom.

Facebook "Like" button encoding

I've put like button on joomla site with cyrillic text:
http://womanew.kz/index.php/2011-10-22-01-42-12/2011-11-01-05-34-04/147-2011-11-07-06-22-02
When I push like button facebook's scraper incorrectly encodes the page.
Also I've created static test html page equal to this URL (http://womanew.kz/test.html), and it scrapes well.
All two pages have equal content, but the problem page is generated from Joomla PHP script.
Also I've noticed that scraper reencodes not full document (it keeps head block unchanged), please see its "See exactly what our scraper sees for your URL" debuging page on facebook.
What can I do to struggle this problem?
When I did this I use this manual and didn't have such problem. This is for Joomla website:
1.Go to the Facebook developer page here: http://developers.facebook.com/docs/reference/plugins/like-box
2.Enter the page number (found in your Facebook page URL) of your Facebook page.
3.If you don't have one, go to Facebook Create Page wizard and create a Brand >> Website page for your site.
4.Enter the height (typically 400 pixels) that you want for the Like widget
5.Click the Get Code button to generate the Facebook Code.
6.Open the Joomla Administrator on your site
7.Navigate to the Module Manager
8.Click the New button
9.Select Custom HTML
10.Paste the code into the HTML box (make sure the editor is turned off).
11.Give the module a name
12.Click the Hide Title radio button
13.Select the Module Position where you want the widget to appear
14.Click Save
Also, take a look at http://www.abolkog.com/portal/tutorials-how-to/100-how-to-add-a-facebook-like-box-to-your-joomla-site
Hope, it will help you!
I've found a bug in the site. One of joomla's modules was truncating UTF-8 strings in byte boundaries and this was created one-byte bug character in the page, after this character scraper starts using incorrect encoding.

Facebook: Custom Landing Page "For Fans"

Facebook provides us with an option to choose a custom landing tab for the new visitors (i.e. non-fans). Can we have a custom Landing tab for fans so that every time i open the page, i m directed to that custom page rather than the Wall..
Have you checked Facebook Help Center?
How can I select a tab as default for people who already Like my Page?
This functionality does not exist.
What you are trying to do is straightforwrd.
Create a "landing page" tab app and add it to your page. Here is a tutorial on how to do it: http://how-to-create-facebook-app.koliber.com
Make this tab the default for your app. On your page, in the upper-right corner click "Edit Page" and change the "Default Landing Tab" to the one you would like displayed by default.
Now everyone will be shown the default tab when they log in. How to distinguish between those visitors who "liked" your page and those that didn't? Easy. Make two versions of the page and display one to those who liked and one to those who didn't like. How to find out whether the current visitor liked your page or not follows:
When your Page Tab URL is called in the iframe, it is passed a signed_request POST parameter. This parameter contains the info you need. However, it is encoded and structured so it needs some processing to get the info
Split the signed_request on the '.' character. The first part is the signature. The second part is the encoded_data
Decode the encoded_data into a JSON string using the URLBase64Decode function equivalent in your server-side programming language
The JSON object contains a node called "page". This contains a node called "liked".
If "liked" is true, the user liked the page and you display the "liked" version of your app. If false, show the "Please like me" version of the site.
This way, when visitors visit your page, they see your custom app in a tab. The actual content is determined server-side on your server based on the page.liked property inside of the JSON object passed to you in signed_request
The simple answer as far as I have been able to find out is "No". There is no setting which aligns with this requirement.
The wall is the default tab for people who like the page.
http://apps.facebook.com/static_html_plus/ this application gives you those options... enjoy!