In Feburary 2016 30,
Log into the administrative panel of the website. You will need the user name and password to gain access.
Point your mouse on “Content” located in the main menu. A drop-down menu will appear. Click on “Article Manager.”
Open the article you wish to modify. The Article Manager: Edit Article screen will open. Scroll down to the text box located in the Edit Article box.
Highlight the text you want to change. Click on the arrow located to the right of the Paragraph options box. A list of text styles will appear. These styles include Paragraph, Heading 1, Heading 2 and Heading 3. The font family and size that correlate to these styles are preset in the template’s cascading style sheet (CSS). Choose an option. The text size will change. Preview your changes to make sure they appear as you want.
Click on “HTML” located below the Text Style options box. This gives you another option for making text size changes. Making changes in the article's code allows you to apply customized changes. An HTML box opens. You will need to know HTML in order to apply changes in this box. Type in the code just as you would apply any HTML. A simple HTML code that will change font size is: Your text here
Making Text Size Changes in Modules
Point your mouse on “Extensions” located in the main menu. A drop-down menu will appear. Click on “Module Manager.”
Click on “New” to create a new module. You can also modify an existing module by opening up that module. However, you can only modify the text in “Custom HTML” modules through this method.
Click on “Custom HTML.” This brings up a screen similar to the Edit Article screen. Follow the instructions outlined for customizing an article.
In Feburary 2016 30,
Showing posts with label modify. Show all posts
Showing posts with label modify. Show all posts
Tuesday, 1 March 2016
Sunday, 14 February 2016
How to Get a New Blogger URL for Your BlogIn Feburary 2016 14,
In Feburary 2016 14,
Log into Dashboard.
Select the blog that you want to modify.
Click the Settings tab.
Click Publishing.
Edit the new Web address (URL).
Republish the blog so that the posts appear in their new location.
In Feburary 2016 14,
Log into Dashboard.
Select the blog that you want to modify.
Click the Settings tab.
Click Publishing.
Edit the new Web address (URL).
Republish the blog so that the posts appear in their new location.
In Feburary 2016 14,
How to Send an Email Through Telnet With an AttachmentIn Feburary 2016 14,
In Feburary 2016 14,
Run the Command prompt. This is achieved on any Windows PC through the typing 'cmd' in the 'Run' application under the 'Start' menu.
Type in the following command, keeping your email server details ready for insertion:telnet yourserver.com 25The only variable is yourserver.com, which you should modify to reflect the outgoing SMTP server on your email account.
Type the command 'EHLO yourserver.com' to begin typing your email, using the MAIL FROM, RCP TO and DATA commands, respectively, to type your message.
Encode your attachment through the MIME format, entering the header and content code within the DATA section of your email. This will allow your attached media to be sent over the text-based Telnet protocol, regardless of whether it's an image, an illustrated brochure or just plain text.
Type a period on an otherwise blank line beneath your email and hit return to send your message and attachment. If you receive an error message, check that you've inserted the correct commands with no typos and that your email addresses are correct.
Type the command 'QUIT' to end your Telnet connection.
In Feburary 2016 14,
Run the Command prompt. This is achieved on any Windows PC through the typing 'cmd' in the 'Run' application under the 'Start' menu.
Type in the following command, keeping your email server details ready for insertion:telnet yourserver.com 25The only variable is yourserver.com, which you should modify to reflect the outgoing SMTP server on your email account.
Type the command 'EHLO yourserver.com' to begin typing your email, using the MAIL FROM, RCP TO and DATA commands, respectively, to type your message.
Encode your attachment through the MIME format, entering the header and content code within the DATA section of your email. This will allow your attached media to be sent over the text-based Telnet protocol, regardless of whether it's an image, an illustrated brochure or just plain text.
Type a period on an otherwise blank line beneath your email and hit return to send your message and attachment. If you receive an error message, check that you've inserted the correct commands with no typos and that your email addresses are correct.
Type the command 'QUIT' to end your Telnet connection.
In Feburary 2016 14,
Tuesday, 2 February 2016
Which Computer Languages Are Used to Create Websites?In Feburary 2016 02,
In Feburary 2016 02,
Hyper-text Markup Language, called HTML, is the most basic language for the creation of a website. Using HTML, you can create the basic elements of a page, including the header and body, tables, paragraphs and text. HTML is a tag-based language, which defines elements using tags enclosed in less than (
) symbols.
CSS
Cascading Style Sheets allow you fine control over formatting elements in a website. Using CSS, you can define complex logic for formatting of elements on your site, from special backgrounds to how different sections fit together and flow. You can modify the color and style of fonts, change how hyperlinks work and format bullets. CSS works with HTML to allow the defining and application of classes, which can then be referenced in the HTML page to designate the style of the HTML element.
JavaScript
JavaScript is slightly more advanced than HTML and CSS. It is used to create action within a website, such as what happens when you click your mouse or scroll over an image. JavaScript is frequently used to perform input checking as well. This allows the Web designer to validate the input in a form field prior to sending the information to the server.
ColdFusion and PHP
Both ColdFusion and PHP are Web development languages designed to facilitate interaction with a database on the server. These languages allow the developer to pull information from a database and display it on a site. In addition, they can be used to update or insert new information into a database based on form inputs. Both languages can be seamlessly integrated with HTML, CSS and JavaScript to create complex websites. No special software is required to write these languages, but each requires an application to be installed to interpret the language and furnish results. Adobe's ColdFusion application is a commercial application, while PHP is Open Source.
SQL
Structured Query Language is a language used primarily for accessing data in databases. This language is required to use the functionality of ColdFusion or PHP on a website. Some common database applications used with websites are Microsoft's SQL Server, Oracle's Sybase and MySQL databases. Of these, MySQL is the only Open Source application. Again, writing SQL does not require special software, but the databases must be installed on the servers for the website.
In Feburary 2016 02,
Hyper-text Markup Language, called HTML, is the most basic language for the creation of a website. Using HTML, you can create the basic elements of a page, including the header and body, tables, paragraphs and text. HTML is a tag-based language, which defines elements using tags enclosed in less than (
) symbols.
CSS
Cascading Style Sheets allow you fine control over formatting elements in a website. Using CSS, you can define complex logic for formatting of elements on your site, from special backgrounds to how different sections fit together and flow. You can modify the color and style of fonts, change how hyperlinks work and format bullets. CSS works with HTML to allow the defining and application of classes, which can then be referenced in the HTML page to designate the style of the HTML element.
JavaScript
JavaScript is slightly more advanced than HTML and CSS. It is used to create action within a website, such as what happens when you click your mouse or scroll over an image. JavaScript is frequently used to perform input checking as well. This allows the Web designer to validate the input in a form field prior to sending the information to the server.
ColdFusion and PHP
Both ColdFusion and PHP are Web development languages designed to facilitate interaction with a database on the server. These languages allow the developer to pull information from a database and display it on a site. In addition, they can be used to update or insert new information into a database based on form inputs. Both languages can be seamlessly integrated with HTML, CSS and JavaScript to create complex websites. No special software is required to write these languages, but each requires an application to be installed to interpret the language and furnish results. Adobe's ColdFusion application is a commercial application, while PHP is Open Source.
SQL
Structured Query Language is a language used primarily for accessing data in databases. This language is required to use the functionality of ColdFusion or PHP on a website. Some common database applications used with websites are Microsoft's SQL Server, Oracle's Sybase and MySQL databases. Of these, MySQL is the only Open Source application. Again, writing SQL does not require special software, but the databases must be installed on the servers for the website.
In Feburary 2016 02,
Subscribe to:
Posts (Atom)