mattskills
Forum Replies Created
-
Forum: Themes and Templates
In reply to: doctypenothing noticeable will happen lol , and it is in the theme folder
Forum: Themes and Templates
In reply to: Removing the search button on search bardepending on your theme the searchform could be located in several places, usually a php file called searchform.php , but it may also be in your sidebar.php
once you find it , change
<input type="submit" id="searchsubmit" value="Search">
to
<input type="hidden" id="searchsubmit" value="Search">Forum: Themes and Templates
In reply to: increase theme to 1024pxopen style.css and change
.site-main {
max-width: 72.286em;to max-width:1024px;
Forum: Themes and Templates
In reply to: changing bannerthe images are in …/twentyeleven/images/headers/
this is a set of banners , one is chosen at random on every page load.
Forum: Themes and Templates
In reply to: doctypethis is located on line 1 of header.php and should look like this:
<!DOCTYPE html PUBLIC “-//W3C//DTD XHTML 1.0 Transitional//EN” “http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd”>
<html xmlns=”http://www.w3.org/1999/xhtml” <?php language_attributes(); ?>>Forum: Themes and Templates
In reply to: bloginfo() parameternot quite sure what you mean…
the bloginfo parameter returns the site settings such as site title , stylesheet url, template url etc.
get the template url: <?php bloginfo(‘template_url’); ?>
get the stylesheet url: <?php bloginfo(‘stylesheet_url’); ?>
get the site title: <?php bloginfo(‘name’); ?>is there something specific that you are trying to do?
Forum: Themes and Templates
In reply to: adding images to the pagesif you don’t want to open up the template files and add it there you can insert
<div style=”float:right;”>
<img src = “http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/FaceBook_48x48.png” alt = “” id = “facebook_image”> <img src = “http://andys.antonioborrillo.co.uk/wp/wp-content/themes/twentyeleven/images/Twitter_48x48.png” alt = “” id = “twitter_image”>
</div>into your pages individually, otherwise open up page.php in your templates folder and it right before the closing </div> of <div class=”entry-content”>
Forum: Fixing WordPress
In reply to: getting current post title from databaseThat worked , Thanks 🙂