Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Why are there borders around all my pics?URL to your site?
My guess is that somewhere in your stylesheet a border has been defined for img tags.
Peter
Forum: Themes and Templates
In reply to: Type in my page is off Please help have no ideawhat exactly did you download?
My point was that you have to provide your own styling to have them display horizontally.
Peter
Forum: Themes and Templates
In reply to: Help with coding a new segmentThese plugins mostly embed their output in some class, which you can make ‘float: left;’. Then they will line-up.
But to be absolutely sure, an URL to your site would be needed.
Peter
Forum: Themes and Templates
In reply to: Type in my page is off Please help have no ideaMost blogrolls are unordered lists, even the ones created by plugins (I’m using ‘Blogroll links‘ (see my links page), which can be styled anyway you like. For examples take a look here.
Peter
Forum: Themes and Templates
In reply to: html links in navigation menuI’m going to make some assumptions here, since I don’t know the theme you’re using.
What you’re looking for is probably in a file called header.php. The thingy to alter is in a div called navigation.
The current menu items are pages, and with the function
<?php wp_list_pages('title_li='); ?>an unordered list is formed (you’ll see this command within two<ul>tags).So you’ll have something like this:
<ul> <li><a href="<?php bloginfo('url'); ?>">Home</a></li> <?php wp_list_pages('title_li='); ?> </ul>And you can add as many links as you want:
<ul> <li><a href="<?php bloginfo('url'); ?>">Home</a></li> <?php wp_list_pages('title_li='); ?> <li><a href="/some/url">Cool Page</a></li> <li><a href="/some/otherurl">Boring Page</a></li> </ul>But again, there were some assumptions, but I think you can work it out.
Peter
Forum: Themes and Templates
In reply to: html links in navigation menuPlease post an URL to your site.
Peter
Forum: Themes and Templates
In reply to: Type in my page is off Please help have no ideaNo problem, everybody here has some problem with their theme 😉
search for your td tags in your screen.css and change to this:
th, td, caption { padding:4px 10px 4px 5px; vertical-align:top; }The vertical-align will align the text to the top of your cell.
Peter
Forum: Themes and Templates
In reply to: Type in my page is off Please help have no ideaa URL would be helpful…
Peter
Forum: Themes and Templates
In reply to: Problem with theme in Internet ExplorerThe site has some errors, forcing IE into quirks mode.
Peter
Forum: Themes and Templates
In reply to: is this wordpress??you can build that type of sites also with WordPress.
Joomla keeps its stylesheet in /themes/[name], and stis site doesn’t.
It uses a lot of tables though.
Peter
Forum: Themes and Templates
In reply to: CSS HelpYou could have des float left as well, but you would have to specify a margin-top to the image.
Peter
Forum: Themes and Templates
In reply to: is this wordpress??The site may be custom built, nothing in the source reveals its true nature. Maybe you could ask them?
Peter
Forum: Themes and Templates
In reply to: is this wordpress??No WordPress AFAICT.
Peter
Forum: Themes and Templates
In reply to: floats? (html w3 validated)Your posts are in an unnamed div. Give this div an ID, and let it float left (you should probably give it a fixed width of say 500px).
I suspect then all will work out.
Peter
Forum: Themes and Templates
In reply to: How to display comments in balloons or bubblesYes, definitely in functions.php.
If you take the example of the codex:
// some code <div class="tl"></div> <div class="tr"></div> <div class="commentbody> <?php comment_text() ?> </div> <div class="bl"></div> <div class="br"></div> // some more codePeter