Red Deer Web Design
Forum Replies Created
-
Forum: Your WordPress
In reply to: Computer Repair Services in MiamiI would suggest hiring a professional designer for the header too – no offence. It feels dated already.
Do you have access to the css?
Forum: Fixing WordPress
In reply to: your session has expired, please log in againIf you can’t login and disable your plugins, maybe it’s possible to disable them through phpmyadmin? I’m not sure if there is a true/false setting that “activates” them? Anyone know?
Forum: Themes and Templates
In reply to: Increasing Font Sizein your body tag replace
font-size: 0.9emtofont-size: 1.3emForum: Themes and Templates
In reply to: Logo on top left…?The theme should support an upload logo option, however if it doesn’t, simply open your site up in an ftp tool and replace the current logo with your logo, which will be in the theme’s image folder.
Forum: Fixing WordPress
In reply to: Display Custom Post Type's CategoriesI was previously using this code to display the category list:
<?php get_query_var( $var ); $category_children = get_query_var('cat'); echo $category_children; $args=array( 'child_of' => $category_children ); $cats = get_categories($args); foreach ($cats as $cat) { ?> <div class="post"> <div class="column_01"> <img src="<?php bloginfo('template_url');?>/images/place-holder.png" alt="place-holder" width="174" height="174"> </div> <div class="column_02"> <?php $cat_id= $cat->term_id; echo "<h3>".$cat->name.": "."</h3>"; echo category_description($cat_id); ?> </div> <a href="<?php echo get_category_link($cat_id) ?>"><p class="goto_page">View All Fire Rated Products</p></a> </div> <?php } ?>Simply use an inspector to find any classes you could target that wraps around each post individually. If you post a link to your site we can help.
Then simply add
border-bottom: 1px solid black;as css.Forum: Fixing WordPress
In reply to: Widget area not working in redI had the same issue. It wouldn’t work with the latest install of WordPress and MAMP. It DID work on a live server though. I also found the WYSIWYG editor disappeared too.
Forum: Themes and Templates
In reply to: [BlackBird] How do you remove Home Button ??In the WordPress settings you can change the front page to be any of your choosing.
Forum: Themes and Templates
In reply to: Changing font site wideThis would be done via your css style sheet
Forum: Themes and Templates
In reply to: HEEEEEEEELP PLEASE !The ‘blocks’ can only be done with a proper theme design… and based on your questions I don’t think you can code your own – so in that regard I’d give up on the blocks.
Also, be sure to take the mod’s hint… decent titles please.
Forum: Themes and Templates
In reply to: I cannot remove the underline from my hyperlinksIt goes back to the default font because that’s what the css is probably saying. “If ul, display x font”
Forum: Themes and Templates
In reply to: I cannot remove the underline from my hyperlinksWe can’t preview your draft, thus can’t look at your actual code….
Forum: Themes and Templates
In reply to: I would like to know the name of a theme.You can always look at the CSS file too and it will show everything at the top… which is probably what this little app does. Nifty ๐
Forum: Themes and Templates
In reply to: Static Home Page Best PracticesThere are a few different ways of looking at it. Usually I would use a page-home.php for the home, and then also have a single.php and a page.php for posts and pages respectively. It all depends on how much each design varies. Maybe I’ll just use index.php for all the pages too.
You can get some more ideas here: http://codex.wordpress.org/Theme_Development