View Full Version : immeasurably skin help!
sandvik
02-11-2007, 07:56 PM
Please take a look at my page http://www.sandvik-bros.org/ and take a look at the plugins to the left of the main page.
Any idea of how to increase the hight of the columns?
At the collumn with the car flash at the bottom left, the hight is to big as I just want flash file to fit the hight.
Can anyone help me please???
jessenco
02-11-2007, 10:50 PM
You can fix all this in your immeasurably.css file.
1- div#left column could be reduce a bit (may be 180px)..
Then if needed...
2- Your engine supercharger photo placed in div#banner is too wide.
Solution: Make this image smaller OR make the whole page wider by changing the value in div#wrapper.
sandvik
02-12-2007, 06:01 AM
All I could find that match something like that is this:
<div id="left_column">
<?php
$inputsize = 27;
for($i = 0; $i < 10; $i++)
{
if($pluginpath[$i] != 'plugins/p1_empty/empty.php')
{ echo '<div class="plugin_1_1">';
if(strlen($pluginname[$i]) > 0)
{
echo '<div class="plugin_1_2">
<div class="plugin_1_3">
<div class="plugin_1_4">
<h1>' . $pluginname[$i] . '</h1>
</div>
</div>
</div>';
}
echo '<div class="plugin_1_5">';
include($pluginpath[$i]);
echo '</div>
</div>';
}
}
?>
</div>
But thats not the right thing??
I put in the "immeasurably_1 and _2" in the link, so if someone would like to have a look at it, I've been happy:)
http://sandvik-bros.org/exstra/
jessenco
02-12-2007, 04:57 PM
Look in style.css file that you'll normally found in /skins/immeasurably/folder. Your CSS file control how your skin is rendered on screens.
Open and change the width of some div as instructed above.
If reducing the width of your div doesn't change anything this means the content you have put in is simply too wide.
This forces your div to expand and break your design.
For example: you can't put a 200 px wide image in a 180px wide div. This will force the div to expand to 200px.
sandvik
02-12-2007, 06:00 PM
It's not the "width" that is the problem, it's the hight.
And I simply can't find out how to change it!
The immeasurably.css files are lokated here: http://sandvik-bros.org/exstra/
So everyone is free to take a look.
jessenco
02-12-2007, 06:09 PM
Just found something wrong with your immeasurably skin.
Before doing anything,. you need to fix this first in your skin php file found in your immeasurably skin folder (or extras folder) - (maybe named immeasurably.php)
</head>
<div align="center">
<body>
and this:
</body>
</div>
</html>
You can't have <div> tag above the <body> tag neither have any HTML tags between closing </body> and </html> page tags.
You need to replace this center div where it actually belong.
Only then you will be able to adjust your style.css file found in skins/immeasurably/.
jessenco
02-12-2007, 06:20 PM
It's not the "width" that is the problem, it's the hight.
I don't think.
Anyway you'll see.
Also in your style.css file, this:
textarea, input
{ border: 1px #9B9A9E solid;
color:#DDDCE1;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
margin: 1px;
background-color: #;5d5d5d
overflow:hidden;
}
should be this:
textarea, input
{ border: 1px #9B9A9E solid;
color:#DDDCE1;
padding: 0px;
font-family: Arial, Helvetica, sans-serif;
font-size:12px;
margin: 1px;
background-color: #5d5d5d;
overflow:hidden;
}
sandvik
02-12-2007, 08:02 PM
Any idea of where this should be placed?
</head>
<div align="center">
<body>
If I remove this the skin wil go from being centered to go back to left as it original was.
(bad english sorry)
vBulletin® v3.8.6, Copyright ©2000-2012, Jelsoft Enterprises Ltd.