|
|
|||||||||
|
|||||||||
| |||||||||
|
|
|
| |||||||||
![]() |
|
|
«
Previous Thread
|
Next Thread
»
|
Thread Tools | Search this Thread | Rate Thread | Display Modes |
|
|
|
Stay one step ahead of the competition. Evaluate and give feedback
on some of the hottest web development tools on the market today.
Make your opinion heard! Click
Here
|
|
#1
|
|||
|
|||
|
I have read through a few of the box models and so on in css but can't get this fixed.
My problem area starts here: Code:
<div id="furlogo">.</div> It doesn't flow like the menu divs do. It shoots straight to the top of the page instead of the top of the next div tag. I had to use this css code below to get it to work in firefox: Code:
<!--[if IE]>
<style type="text/css">
#outer {
border-top-width: 1px;
border-right-width: 1px;
border-bottom-width: 1px;
border-left-width: 1px;
border-top-style: solid;
border-right-style: solid;
border-bottom-style: solid;
border-left-style: solid;
border-top-color: #1F74C7;
border-right-color: #3F9CE1;
border-bottom-color: #1F74C7;
border-left-color: #3F9CE1;
padding-top: 2px;
padding-right: 0;
padding-bottom: 2px;
padding-left: 0;
background-color: #2985D2;
height: 35px;
margin-top: 0px;
margin-right: 0px;
margin-bottom: 0px;
margin-left: 0px;
}
</style>
<![endif]-->
I need to have these divs working with me not against me or working with the other divs not against them. Is there anyone who could shed light on this one for me? link to div issues, view source to get the code. Cheers
__________________
[DWMX 2004]|[DWMX 8]|[DW CS3]|[MySQL]|[SQL]|[Access ]|[ASP/VBScript]|[PHP]|[XP-Pro] Global fix: "Invalid Default Script Language" Make it idiot proof and someone will make a better idiot. |
|
#2
|
|||
|
|||
|
Can't DELETE this thread, got it working, thanks.
I looked at these ideas again. http://blog.html.it/layoutgala/ Worked like a charm. Cheers |
|
#3
|
|||
|
|||
|
Quote:
It would be great if you could post the findings about what fixed your problem for others in a similar situation.
__________________
|
|
#4
|
|||
|
|||
|
I looked at the designs of these: http://blog.html.it/layoutgala/ in great detail...
I also realised that having divs on their own is a tricky business, better to wrap them up in one div. PHP Code:
Adjust the widths & heights as needed. Cheeers |
|
#5
|
||||
|
||||
|
Hey just gonna give you a tip about css... You might now this already and you might not... Just to shorten you some time writing css.. So here is your code:
PHP Code:
and here is how it can be done with less coding: PHP Code:
Just wanna help...
__________________
http://www.vokic.net |
|
#6
|
|||
|
|||
|
Thank you, I looked at my css books for the short-handed versions of code, I am sure that this:
Code:
border-top: 1px solid #1F74C7; border-right: 1px solid #3F9CE1; border-bottom: 1px solid #1F74C7; border-left: 1px solid #3F9CE1; Can become this: Code:
border: 1px solid; border-color: #1F74C7 #3F9CE1; So the entire code would look like this: PHP Code:
Last edited by student101 : June 20th, 2008 at 04:20 AM. |
|
#7
|
||||
|
||||
|
Yup forgot about that one...
|
|
#8
|
|||
|
|||
|
It's cool,
just wish I could figure out this FCKeditor, can't upload anything - it sux that it's so complicated to use such a basic tool. Fixed! Cheers Last edited by student101 : June 20th, 2008 at 05:07 AM. |
|
#9
|
||||
|
||||
|
Yup... I've tried to use it too long time ago.. Too complicated..
So now i'm using TinyMCE with my custom upload... Basically.. TinyMCE + Iframe just like wordpress... And one sigle command for adding content to TinyMCE after upload... |
|
#10
|
|||
|
|||
|
It would be cool if it worked out of the box - but that's like asking for a chocolate cake and eating it.
Tested TinyMCE just now - not cool that you have to create an upload function or pay for it. FCKeditor seems to be pretty cool, not sure about the security risks with these open source apps. I tested the Interakt KTML (don't bother with it, unless you want spam x999999...), security holes and backdoors like crazy - and you have to buy it - must be the reason it was discontinued. |
![]() |
| Viewing: Codewalkers Forums > Other Technologies > Client Side Things > Div boxes are broken? |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
|
|
|
|
|
|
|