sunsi55
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Link to a place on my website!Okey. I see.
I did have some
tags myself!
I`ll guess it all works fine when I remove them! ?? Thanks for the help!Forum: Fixing WordPress
In reply to: Link to a place on my website!Forum: Fixing WordPress
In reply to: Link to a place on my website!Just like on the test page you posted.
Your: “This is A” appears in the bottom of the site right?
I would like that ” This is A” To appear on the top of the site instead of the bottom.
Do you understand what I mean? ??Forum: Fixing WordPress
In reply to: Link to a place on my website!It`s all good now!Thanks alot!
But one more thing!:
When I link to A(1) it appears on the bottom of my page. Is it possible to make it appear on top or in the middle?Forum: Fixing WordPress
In reply to: Link to a place on my website!Okey. Now my code looks like this:
A:<a href="#A" style="color:#FFF8DC" title="A">A</a>
A(1) :<a><p style = "font-family:Helvetica; font-size:20px; text-decoration:none;title="A">A </a>
Can you see where I have gone wrong?
Edit!: I got it now!
It works!
Great help! Thanks! ??Forum: Fixing WordPress
In reply to: Link to a place on my website!Can`t seem to get it to work…
Forum: Fixing WordPress
In reply to: Link to a place on my website!Thanks for answer.
Your code dosen`t work.Don`t i need to write #A somewhere in my A(1) tag to make the A find it?
Give my A(1) a id that is = #A
but how?Forum: Fixing WordPress
In reply to: How to register a new sidebar and make it appear on a spesific page!Thanks. Got it ??
Forum: Fixing WordPress
In reply to: Border to my sidebarI have multiple sidebars also on my site.
So the best thing for my would be to add it directly to my sidebar code.Which currently, looks like this:
<a href="https://x.com/home"><img class="alignnone size-full wp-image-16" title="Pictitle" src="https://x.com/x/wp-content/uploads/2010/09/PicA.jpg" alt="" width="180" height="150" " Heihei"</a> <a href="https://x.com/Home"><img class="alignnone size-full wp-image-16" title="Pictitle"src="https://x.com/x/x/uploads/2010/09/PicB.jpg" alt="" width="780" height="80"</a>
Forum: Fixing WordPress
In reply to: Border to my sidebarHi.
I found my Base.css in my Cpanel.
I also found:
print.css
Reset.css
Screen.css
Can`t seem tofind anything for sidebars there tho..What should I add to the base.css file to get borders? ??
Forum: Fixing WordPress
In reply to: Border to my sidebarI don`t see any base.css. But I can check my FTP and see if I find it there ??
Forum: Fixing WordPress
In reply to: Border to my sidebarChanel.
How do I ge there? From my dashboard?Ljmyers. I don`t have any div id =”sidebar” Or anything like that. It is just a code where there are linked to some pics.
I have seen your links, and thanks! But how do I get that border around the whole sidebar?
I can`t just write style = “, Shouldent it be some letter or something infront of style?
Dont I need anything more?Forum: Fixing WordPress
In reply to: Border to my sidebarRev.Voodoo I have fixed the sidebar problem I posted some days ago! Thanks for great help! ??
Where do I find my CSS file?
The file I posted is the one I find under apperance -> Editor -> Stylesheet.css
Where else should I look?Forum: Fixing WordPress
In reply to: Border to my sidebarMy CSS file looks like this:
* Theme Name: WP Framework Theme URI: https://wpframework.com/ Version: 0.2.4.10 Description: A <em>blank</em> WordPress Theme Framework <strong>that's everything you need, and nothing you don't.</strong> With features like <em>microformats, a traditional template structure, convention over configuration, clean semantic code, documenation, and it's atomic templating system</em>, WP Framework is <em>completely extensible, flexible</em> and <strong><em>the</em></strong> starting point for theme authoring and customization. To learn more, visit <a href="https://wpframework.com">https://wpframework.com</a>. Author: Ptah Dunbar Author URI: https://ptahdunbar.com Tags: one-column, two-columns, three-columns, fixed-width, sticky-post, threaded-comments, microformats Copyright 2008 Ptah Dunbar <https://ptahdunbar.com> All rights reserved. WP Framework is licensed under the terms of the GNU General Public License version 2. If you have any questions, comments, or concerns, visit <https://wpframework.com> for more information! */ /* Reset Browser Defaults */ @import url( 'library/media/css/reset.css' ); /* Apply base theme styles and colors */ @import url( 'library/media/css/base.css' ); /* Basic 2 Column Layout */ @import url( 'library/media/layouts/2col-r.css' ); /* Stylistic CSS Styles */ @import url( 'library/media/css/screen.css' ); /* These empty css selectors are temporarily here for compatiability with the WordPress theme repository checklist. */ .aligncenter {} .alignleft {} .alignright {} .wp-caption {} .wp-caption-text {}
Isen`t it possible to add some code right inn to my sidebar?
Forum: Fixing WordPress
In reply to: How to register a new sidebar and make it appear on a spesific page!Hi.
I have now made a new file, called it snarfer.php like in the example.
I have now understood how to call it to a spesific page, but I still have one problem:
I don`t know how to gode my new template. I have tried to copy-paste the page.php file, but then i get this:get_header(); ?> instead of the header I want to have.
My snarfer.php template code looks like this:
Where did I go wrong?<?php /* Template Name: Snarfer */ ?> get_header(); ?> <!--BEGIN #primary .hfeed--> <div id="primary" class="hfeed"> <?php if ( have_posts() ) : ?> <?php while ( have_posts() ) : the_post(); ?> <!--BEGIN .hentry--> <?php if ( current_user_can( 'edit_post', $post->ID ) ): ?> <!--BEGIN .entry-meta .entry-header--> <div class="entry-meta entry-header"> <!--END .entry-meta .entry-header--> </center> </div> <?php endif; ?> <!--BEGIN .entry-content .article--> <div class="entry-content article"> <?php the_content(); ?> <!--END .entry-content .article--> </div> <!-- Auto Discovery Trackbacks <?php trackback_rdf(); ?> --> <!--END .hentry--> </div> <?php comments_template( '', true ); ?> <?php endwhile; endif; ?> <!--END #primary .hfeed--> </div> <?php get_sidebar('two'); ?> <?php get_footer(); ?>