luksusdyret
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: WP 3.0.5 bug?Well… You are saying it wont touch images in posts, but it did. Cause all I did with my blog that day was upgrading, I did not touch any css and I did not innstall any new plugins.. so It has to be the upgrading.
Forum: Fixing WordPress
In reply to: WP 3.0.5 bug?That’s kind of what I’m trying to avvoid…
It’s like on many old posts, don’t want to have to go back to all the old posts and try to remember wich pictures I used in them ……. That’s kind of a huge job.
Forum: Fixing WordPress
In reply to: upgraded to 3.0.5 and photos dissapearedYes I saw that.. And I innstalled a hot fix, but my photos are still missing …. :/
Forum: Fixing WordPress
In reply to: WP 3.0.5 bug?So… I upgraded today, and some of my images in previous posts just disappeared. I guess it’s because of this bug?
I innstalled the fix but the pictures are still gone :/ what to do?
Forum: Fixing WordPress
In reply to: a few css changesofc. I know that.. I have made all the changes to the design myself so it’s not that I don’t know what I am looking for…
It’s just that I have tried do edit it and remove the underline on both of them, but without any luck :/
Forum: Themes and Templates
In reply to: Adding content outside Kubrick columnsthank you thank you soo much! Finaly I got what I needed ??
Forum: Themes and Templates
In reply to: Adding content outside Kubrick columnsalchymyth: Could you help me put another div wrapper around the whole thing on my blog, like you described? I tried it on default theme and it worked perfectly, it’s just like I want it.
But I’m not using default theme, I’m using Squared and the coding are totally different, I also have added alot of stuff in the header like ads and a menu so it was too hard for me to place the codes you posted.
My blog is: https://www.luksusdyret.com
As you can see I’ve made an right sidebar, but I’m not happy with that and I think this seloution would be better for me.
I would be so thankful if you would help me.
Here is my header.php code now;
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "https://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html xmlns="https://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head profile="https://gmpg.org/xfn/11"> <meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" /> <title><?php bloginfo('name'); ?> <?php wp_title(); ?></title> <link rel="stylesheet" href="<?php bloginfo('template_directory'); ?>/style.css" type="text/css" media="screen" /> <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" /> <link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" /> <?php wp_head(); ?> </head> <body> <div id="principal"> <div id="headerbilde"><a href="https://www.luksusdyret.com"><img src="https://www.luksusdyret.com/wp-content/uploads/2010/04/HEADER.png"></a> </div> <div id="menyboks" class="meny"> <ul> <li><a href="https://www.luksusdyret.com">Forsiden</a></li> <li><a href="https://www.luksusdyret.com/kontakt">Kontakt</a></li> <li><a href="https://www.luksusdyret.com/media">Media</a></li> <li><a href="https://luksusdyret.com/salgsblogg">Salgsblogg</a></li> <li><a href="https://www.luksusdyret.com/VIP">VIPblogg</a></li> </ul> </div> <p> annonse: <a href="https://tracking1.euroads.no/system/showadv.php?sid=3&cpid=733&adid=16408&acid=2266&eatrackid=2853"><img src="https://banner.euroads.no/banner/3/733/banner_5244.gif" width="830"></a> <p>
Forum: Themes and Templates
In reply to: place sidebar correctlyif you look at how the sidebar is placed now, I want it to be placed like that only with just like 10px between the sidebar2 and the rest of the blog. And I want it to be placed like that all the time, no matter how big or small the screen is.
Forum: Themes and Templates
In reply to: place sidebar correctlythat’s not working, if i use the position: relative; it just messes up everything cause then it makes a huge space between things.
I guess I’ll just go back to where I started and just live with the fact that the sidebar is placed different places on different screen sizes.
Forum: Themes and Templates
In reply to: place sidebar correctlyI don’t understand how to do this;
“top: give position u required to bring back to sidebar 1
left: give positioning u required”Forum: Themes and Templates
In reply to: place sidebar correctlyI’m sorry but I don’t understand
Forum: Themes and Templates
In reply to: place sidebar correctlyi did that .. and as i said ow my whole blog is messed up
Forum: Themes and Templates
In reply to: place sidebar correctlyso i changed the width, but now my whole blog is messed up because that changed the width on the header stuff too, and i don’t want it du be placed underneath the header, i want the sidebar2 to be placed next to it…
Forum: Themes and Templates
In reply to: place sidebar correctlynow i know.. the sidebar2 codes where 2 places in the css.. i deleted one of them and now something happened.
But.. now the sidebar2 is placed under my whole blog :S
Forum: Themes and Templates
In reply to: place sidebar correctlynow my codes look like this..
sidebar1.php;
<div id:"sidebar12"> <div id="sidebar1"> <ul id="sidebar"> <?php if ( !function_exists('dynamic_sidebar') || !dynamic_sidebar() ) : ?> <?php include (TEMPLATEPATH . '/searchform.php'); ?> <?php wp_list_pages('title_li=<h2>Pages</h2>' ); ?> <h2>Archives</h2> <?php wp_get_archives('type=monthly'); ?> <?php wp_list_categories('title_li=<h2>Categories</h2>'); ?> <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?> <?php wp_list_bookmarks(); ?> <h2>Meta</h2> <?php wp_register(); ?> <?php wp_loginout(); ?> Valid <abbr title="eXtensible HyperText Markup Language">XHTML</abbr> <abbr title="XHTML Friends Network">XFN</abbr> WordPress <?php wp_meta(); ?> <?php } ?> <?php endif; ?> </div>
sidebar2.php;
<div id="sidebar2"> <ul id="sidebar"> <div> <?php if ( function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?> <?php endif; ?> </div> </div>
css:
#sidebar12{ float:right; } #sidebar1 { float: left; position: relative; } #sidebar2 { float: right; position: relative; background: transparent; }