graphfx21
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: PHP person help me with stylesheet code?You just need to worry about the links to your stylesheets.
<link media="Screen" href="<?php bloginfo('template_directory'); ?>/style.css" type="text/css" rel="stylesheet" />
Everything else stays the same. I would advise looking at the codex in terms of the structure of a theme however if you are building a custom theme.
Forum: Fixing WordPress
In reply to: How do I insert the code for widget sidebars?Yeah,
<img src=”https://i40.tinypic.com/34h6iy9.png” target=”_blank” border=”0″ alt=”Image and video hosting by TinyPic”>
I would recommend Gravity Forms, they are the industry standard and have many plugins tailored to WordPress.
Forum: Fixing WordPress
In reply to: CSS HelpSure, can you provide a link to the site?
Forum: Fixing WordPress
In reply to: Read More on Pages other than Post, YIKESThis is what I use to display a read more link after the excerpt of a post:
function new_excerpt_more($more) { global $post; return '...' . '<a href="'. get_permalink($post->ID) . '" class="readMore">Read More</a>'; } add_filter('excerpt_more', 'new_excerpt_more');
To call the display the excerpt and the read more link you just need this:
<?php if (have_posts()) : ?> <?php while (have_posts()) : the_post(); ?> <h1><a href="<?php the_permalink() ?>"><?php the_title() ?></a></h1> <?php the_excerpt(); ?> <?php endwhile; ?> <?php endif; ?>
The read more link gets added on automatically.
Forum: Fixing WordPress
In reply to: Change font color in TitleSorry this is the correct code:
#site-description { color: purple !important; }
Using the code from my previous post targets the title and description.
Forum: Fixing WordPress
In reply to: Change font color in TitlePaste this at the bottom of your style.css file:
#site-title a, #site-description { color: purple !important; }
This file is located: Appearance > Editor > Style.css
Forum: Fixing WordPress
In reply to: adding line image to footerWhy don’t you wrap it in a div, then do something like this:
div { border-top: 3px solid #fff; border-bottom: 3px solid #fff; padding: 10px 0; }
Also, in IE it adds a good amount of extra space at the bottom with whatever your current solution is.
Forum: Fixing WordPress
In reply to: change link color pages and navigation bar color.. pls help!No, that’s the correct code, its possible that another stylesheet that controls the menu is being loaded after the stylesheet you are editing. What is the code you are putting in?
Forum: Fixing WordPress
In reply to: Where to develop WP site1. Do I develop it within a subdirectory of the my clients hosting account and transfer it to the root when complete?
That is what you should do.
Forum: Fixing WordPress
In reply to: @font-face not working? Not doing it correctly?You need to have your fonts on the same directory as your css file. For example:
Theme > style.css, font.ttf
or
Theme > css > style.css, font.ttfForum: Fixing WordPress
In reply to: links not workingYeah your site currently says it contains malware and it could infect computers that visit the site.
Forum: Fixing WordPress
In reply to: change link color pages and navigation bar color.. pls help!Oh ok, I used firebug to lift your code. You just have to put your desired color here
#menu .ddsmoothmenu { padding-bottom: 5px; width: 950px; float: left; background: Your color here; padding-left: 14px; }
Go to https://www.colorpicker.com/ to pick out a hex color and paste it into your stylesheet in the above section. Be sure to format your code like so:
background: #373737;
Forum: Fixing WordPress
In reply to: Computer keeps freezing when I try to upload a picture?There are two types of uploader, the browser one and default one. I have had “some” trouble using the default one in the past. When that happens, I use the browser uploader. There is an option to use it under the “drop files here” box. The option is this “You are using the multi-file uploader. Problems? Try the browser uploader instead.”
Forum: Fixing WordPress
In reply to: change link color pages and navigation bar color.. pls help!It looks like you have resolved the issue, correct?