Head tag <head> </head> to articles on an Oculus 3.3.3 Joomla Template - head

i, I want to know how to add a Head tag to articles on an Oculus 3.3.3 Joomla Template this is ti add it to the index.php of my hosting

Related

Joomla 4 Custom module in template head

I try to insert in Joomla 4 custom module in template head.
In old Joomla 2.5 I was able to do it like this:
<head> ... <jdoc:include type="modules" name="CustomTop" /> ... </head>
This method seems don't work any more in Cassiopeia index.php

Laravel 5.3 How does bootstrap interpret and display items without internet

I'm still learning Laravel 5.3 and started studying it a few days ago. One tutorial project I'm following made use of Fontawesome and Bootstrap where bootstrap link and fontawesome link was included within the <head></head> tag.
So I thought that if I disconnect the internet connection, it will fail to display the icons from fontawesome since no library file was downloaded and imported to project. But I was surprised that it still was able to display the fontawesome icons.
That's when I of thought of asking this simple question since I'm a beginner with Laravel and web programming. (Java programmer)
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, user-scalable=no, initial-scale=1.0, maximum-scale=1.0, minimum-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>#yield('title')</title>
<!-- bootstrap link -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/bootstrap/3.3.7/css/bootstrap.min.css" integrity="sha384-BVYiiSIFeK1dGmJRAkycuHAHRg32OmUcww7on3RYdg4Va+PmSTsz/K68vbdEjh4u" crossorigin="anonymous">
<!-- fontawesome link -->
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.6.3/css/font-awesome.min.css">
<!-- app.css link -->
<link rel="stylesheet" href="{{ URL::to('css/app.css') }}">
#yield('styles')
</head>
I read something from Laravel 5.3 documentation about the bootstrap directory that stores cached information. Is the caching the reason the fontawesome icons still displays even when it is not connected to the internet?
The Bootstrap Directory
The bootstrap directory contains files that bootstrap the framework
and configure autoloading. This directory also houses a cache
directory which contains framework generated files for performance
optimization such as the route and services cache files.
I'd appreciate any explanation to this so I can better understand how it works.
Your browser has cache too. Do hard refresh / reload - in Chrome you can do this by opening inspector and then right click on refresh button and click what suits you the most.
Describing what is actually going on would be too long for an answer.
Good description what is going on is here.
Google search terms: browser cache, web browser cache
If you use build system (gulp) you will most likely end up with large *.css file which contains bootstrap, font-awesome definitions etc.
More on that is right in documentation.

How to integrate FontAwsome library with my Magento store ?

I have been trying to integrate Font Awesome library into my Magento store. I have been trying to add CSS links onto my Local.xml file but doesn't seem to work.
Paste the following code into the <head> section of your Magento head.phtml.
<link rel="stylesheet" href="https://maxcdn.bootstrapcdn.com/font-awesome/4.4.0/css/font-awesome.min.css">
OR
<link rel="stylesheet" href="yourLocalPath/font-awesome.min.css">
OR
you can go to System > Configuration > Design > HTML head > Miscellaneous Scripts and can add the above link.

Why won't Joomla render my jdoc tags on the frontpage?

We just migrated a client from their server to a cloud solution. We moved their Joomla 1.5 site with little issue. The databases were migrated with ease. We had to clean up a few stray 'localhost' database connections. All seemed well and good.
Except the front page. Which for some odd reason refuses to render jdoc tags. At all.
The following HTML is currently found when viewing the front page of their Joomla install:
<!DOCTYPE HTML>
<html lang="en-gb" dir="ltr">
<head>
<meta charset="utf-8" />
<jdoc:include type="head" />
<jdoc:include type="modules" name="header-scripts" />
This is the only page that has this issue. All other pages on the site render jdoc tags correctly. My google search of this problem seems to end up with most people having the opposite issue: the front page renders fine and the other pages do not. There seem to be other related issues when dealing with newer versions of Joomla, but I cannot connect the difference in code between them, especially as Joomla 2.5.x uses a completely different approach to building the pages.
Any suggestions on how to fix this?
Notes:
Joomla 1.5
MySQL 5.1
PHP 5.3
Was running on a dedicated server, now running on a cloud server
This is my first foray into Joomla, and I am not impressed.
using YOOThemes as the templating engine (I have read something that this may be the issue, but I have no clue how to fix it.)

Joomla Modal shows in IE (all versions) with almost empty Template

I am working on a template for Joomla! 2.5.4. Normally this goes very well, but today I have a weird problem.
The Joomla Modal(Squeezebox) shows in an completely empty template in all versions of IE.
The code of the template is:
<?php
$app = JFactory::getApplication();
$sitename = $app->getCfg('sitename');
?>
<?='<?xml version="1.0" encoding="utf-8?>'; ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">'
<html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en-en" lang="en-en" dir="ltr">
<head>
<jdoc:include type="head" />
</head>
<body>
</body>
</html>
When disabling the K2 System plugin the Modal disappears. But i need the plugin so I can't disable it.
The following is installed in Joomla:
Joomla 2.5.4 (newest version)
K2
This template
The website is reachable on http://marjolein.site-project.nl
Does someone recall this problem or know how to solve it?
Already found the awnser. The XML line put the template in IE in Quirks Mode... Removing that solved it

Resources