mpustka
Forum Replies Created
-
Forum: Plugins
In reply to: Undefined Function php_e () – errorThese are subfolders within the wp-content/plugins/exec-php folder
css
docs
images
includes
js
languages
And there are a few files in the wp-content/plugins/exec-php folder.Do I delete all of this?
Forum: Plugins
In reply to: Undefined Function php_e () – errorThanks. Are there contents in that folder that I’ll be deleting? Is it the same thing as removing that plugin folder?
Forum: Themes and Templates
In reply to: Change Font on Single Page?which code did you want to see, from my header.php file?
<?php } else { ?><link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" /> <?php } ?> </head> <body <?php if (function_exists('body_class')) body_class(); ?>> <div id="wrap"> <div id="stripe"></div>
Forum: Themes and Templates
In reply to: Comment Code Inserting Blank Lines?html tab
Forum: Themes and Templates
In reply to: Change Font on Single Page?ok, so I’ve made the change to body on the header.php
how do i code the page to change something like font?
Forum: Themes and Templates
In reply to: Change Font on Single Page?ok, well it’s a page and not a post but not sure if that matters.
After editing the header.php, what do I do next in order to change the singular page?
call the class and then write the changes?
Forum: Themes and Templates
In reply to: Change Font on Single Page?could I add the body_class() function to my theme?
Forum: Themes and Templates
In reply to: Change Font on Single Page?what is meant by post meta information?
I’m not trying to change the post title, just the font style on the remaining text on the page.
Forum: Themes and Templates
In reply to: Custom Stylesheet for Newsletteris this a code error???
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pagesdoes it have anything to do with the newsletter page being made up of tables?
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pagesno insult taken. I’ll look at all of it again.
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pagesmade the change but didn’t seem to make a difference
I tried to make some dramatic changes, such as the background color and font color so that it would show up and easily be noticed but I still don’t see it…
.myclass #content p { background-color: #123456; }
.myclass #content p { font:12px; font-family: Courier; color: red; }
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pages<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml"> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <meta name="distribution" content="global" /> <meta name="robots" content="follow, all" /> <meta name="language" content="en, sv" /> <title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title> <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats please --> <body<?php if ( is_page(array('newsletter-1', 'newsletter-2', 'newsletter-3'))) { echo ' class="myclass" '; } ?>> <link rel="Shortcut Icon" href="<?php echo get_settings('home'); ?>/wp-content/themes/elements-of-seo/images/favicon.ico" type="image/x-icon" /> <link rel="alternate" type="application/rss+xml" title="RSS 2.0" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="alternate" type="text/xml" title="RSS .92" href="<?php bloginfo('rss_url'); ?>" /> <link rel="alternate" type="application/atom+xml" title="Atom 0.3" href="<?php bloginfo('atom_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pageshttps://atxre.com/newsletter-1/
I published it temporarily above.
Forum: Themes and Templates
In reply to: Different Style (CSS) to Different Pageshttps://atxre.com/?page_id=4580&preview=true
In header.php file I changed
<body>
to
<body<?php if ( is_page(array('newsletter-1', 'newsletter-2', 'newsletter-3'))) { echo ' class="myclass" '; } ?>>
In style.css file I added
.myclass #content h1 { color: #069DD5; font-size: 20px; font-weight: bold; text-transform: uppercase; font-family: Courier; }
and
.myclass #content { background-color: #123456; }
Just to see if I could confirm that it is working but I’m still not doing something correctly…
Sorry if I’m being dense and thanks for your patience.