hellomatt
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Remove the “Home”-button from the header.phpGo to your theme section of your admin panel and click on “Vigilance Options”. You’ll see an area to exclude pages from the top menu.
Find the page id by going to your pages list and hovering over the link. You’ll see something ending with: “action=edit&post=##”. That ## is the ID of your page which you want to insert in your Vigilance Options area.
Forum: Fixing WordPress
In reply to: Lost paragraph indents… no spaces between paragraphsMake sure your style.css looks like this:
.main p { line-height:18px; margin:0 0 15px 0; }Forum: Themes and Templates
In reply to: Problem in TemplateHi Allan,
Could you please provide links to the pages that work and the ones that do work? This will help everyone see an example of what is wrong.
Forum: Themes and Templates
In reply to: inserting image in place of a header…As I said above..
Change this:
#header { background: #CCCCCC url('littlestbanner_grey.jpg') no-repeat bottom center; margin: 0; padding: 0; height: 267px; } #headerimg { margin: 0; height: 267px; background: #CCCCCC url('littlestbanner_grey.jpg') no-repeat bottom center; padding: 0 0 0 45px; }To this:
#header { background: #CCCCCC url('http://littlestgroup.co.uk/littlestbanner_grey.jpg') no-repeat bottom center; margin: 0; padding: 0; height: 267px; } #headerimg { margin: 0; height: 267px; background: #CCCCCC url('http://littlestgroup.co.uk/littlestbanner_grey.jpg') no-repeat bottom center; padding: 0 0 0 45px; }Forum: Themes and Templates
In reply to: inserting image in place of a header…Regarding the page color, here’s the code:
#page { background-color: #fff; margin: 20px auto; padding: 0; width: 860px; }Change that to #CCC; and you should have the tan color
Forum: Themes and Templates
In reply to: inserting image in place of a header…You need to insert the entire link to the image. I see you just have the file name. The style.css is looking for it in the “minimalism” folder but it’s not there. Thus, you have to specify the folder by putting an entire link or using “../” in the url.
Do you remember where it was uploaded to?
I found one here.. http://littlestgroup.co.uk/littlestbanner_grey.jpg is that it??
Paste that entire link in and it should help.
Forum: Fixing WordPress
In reply to: Making a static site with WordPressHi Myles,
You have it right on. Just don’t select anything for your posts and they will be hidden.
Forum: Themes and Templates
In reply to: inserting image in place of a header…Yes, its the filename. It looks like you’re on the right track
try this in your css:
#caption{ margin-left:#px; margin-top:#px;}replace those numbers with something that works for you. Note that each number represents one pixel you will be moving it, starting from the left/top. So, margin-left:1px; would create a 1 pixel margin between the left side of the header and the beginning of the text.
I hope that helps.
Forum: Themes and Templates
In reply to: inserting image in place of a header…Hello,
I apologize for the confusion. It looks like the theme you are using has an option to modify the header image and color right from the admin panel. However, I don’t see any option to change the image (not in safari), just the colors.
We can add an image to your header by inserting the following in your style.css:
background: #fff url('images/myheader.jpg') no-repeat bottom center;Inside this:
#headerimg { margin: 0; height: 175px; padding: 0 0 0 45px; }So it looks like:
#headerimg { margin: 0; height: 175px; background: #fff url('images/myheader.jpg') no-repeat bottom center; padding: 0 0 0 45px; }Again, replace myheader.jpg with the link to your image. Make sure it is 175px by 760px or less!
Forum: Themes and Templates
In reply to: modifying the Classic themeHi Paul,
I recommend you get a few books on HTML and CSS – I think a small investment in them will turn out to save you some time and hassle through the future. In addition, you may find it useful to start picking some wordpress blogs (there are plenty here in the showcase forum) and looking through the source code to see how these sites were coded. You can do this by right clicking and selecting “view source”. In the source code will be a link to the site’s stylesheet (ending with style.css) which you could put into a new web window and also view.
I’ve also noticed some more things with your code:
<!-- <h1 id="header"><a href="http://3ryd.com/wp/"></a></h1> --> <h1 id="header><a href="http://3ryd.com/wp"><img alt="" src="http://3ryd.com/wp/wp-content/themes/classic/kubrickheader.jpg"/></a></h1>I would foremost recommend you delete that commented section since it doesn’t look like it’s being used. Second, you forgot a ” after the word header in your h1 tag. Be sure you are indeed using quotation marks for your coding and not two apostrophes.
From what I have seen, h1, h2, h2, etc tags are generally used for text headings. Example:
<div id="header"> <h1>The Dog Blog: How to Train Your Dog</h1> </div>CSS would handle styling, including the size of the elements, any borders, font properties, background images, etc. That is MY way of doing it – I am not saying it’s the right way.
The method you are using certainly works and I am pretty sure I have used that method when I was just starting out. I think learning HTML and CSS is about getting comfortable and getting experience – in the beginning, even if something may be considered “wrong” or “improper”, it may work – and when you are still learning that’s key. Find your way and learn as you go – it took me 5 years and I still am figuring out some things every now and then.
Let me know if you have any more questions or need more help.
Forum: Your WordPress
In reply to: Site RedesignI love that twitter box! great job
Forum: Themes and Templates
In reply to: modifying the Classic themeYes, you have to add it.
Forum: Fixing WordPress
In reply to: Having a heck of a time with essence theme. helpI suggest you visit the support forum for your theme:
http://forum.ithemes.com/index.php?board=2.0
The creators will be able to better assist you over there.
Forum: Themes and Templates
In reply to: Hide Page From NavigationYou have a point, I guess it’s just a matter of preference.
It still confuses me why the theme called on globalnav. I installed the same theme, but a newer version and that function wasn’t there – they are using wp_list_pages in the newer version. I installed the theme to try to see the functions.php but obviously it turned out to be irrelevant in assisting me.