Showing posts with label Header. Show all posts
Showing posts with label Header. Show all posts

Saturday, 27 February 2016

Javascript Tutorial for PDFIn Feburary 2016 27,

In Feburary 2016 27,
Create your Javascript PDF variable. This variable has the functions needed to create and edit a PDF. To start your PDF creation function, use the following code:pdfdoc = new pdf$("", "Header", "Footer");
Set a font size. The font size can be set to any number. A typical document font size is 12-18. You may need to use different font sizes to come up with the best size for your PDF pages. The following code sets the font size to 18:pdfdoc.setFontSize(18);
Write some text to the PDF. You can continue to write text until the PDF file, and the PDF reader, sets page breaks for each page created. The following code adds a line of text:pdfdoc.addText('Create a PDF file in Javascript');
Save the file and display it to the reader. The following code creates a physical file and displays the document to your reader:pdfdoc.writeToFile('mypdf.pdf');
In Feburary 2016 27,

Saturday, 6 February 2016

How Do I Change a Header Link on Joomla?In Feburary 2016 06,

In Feburary 2016 06,
Download your desired Joomla theme. Unzip the file. Locate 'index.php' and open it. Some themes will have a 'header.php.' If yours does, open this instead of 'index.php.' Open this file with notepad.
Press 'Ctrl' and 'F' to bring up your search window. Enter 'class='logo' to find the part of your PHP file where your header is located.
Find the header link. You will see code that looks something like this:
baseurl ?>/'>ZeroTemplates
Your Slogan Text Here
The portion that comes after
Delete
baseurl ?>/ and enter in your desired header link. Save your file, and then upload it to Joomla.
In Feburary 2016 06,

Monday, 1 February 2016

How to Include Java Script on All Pages in WordpressIn Feburary 2016 01,

In Feburary 2016 01,
Upload your JavaScript file in your theme's folder via an FTP client.
Log on to your WordPress site and click on 'Appearance' and 'Editor.'
Select 'Header' from the list of templates on the right.
Insert the script to include your JavaScript file within the
section of the template:Replace 'pathto/yourscript.js' to the location of your JavaScript file.
Click on 'Update File.'
In Feburary 2016 01,