Mysidia Adoptables Support Forum  

Home Community Mys-Script Creative Off-Topic
Go Back   Mysidia Adoptables Support Forum > Mysidia Adoptables > Questions and Supports

Notices

Reply
 
Thread Tools Display Modes
  #1  
Old 11-18-2016, 08:05 AM
Silver_Brick Silver_Brick is offline
Designer || Coder
 
Join Date: Oct 2016
Location: In Earth
Posts: 205
Gender: Male
Credits: 26,956
Silver_Brick is on a distinguished road
Default Displacement




i want this in straight line please help

Last edited by Silver_Brick; 11-19-2016 at 02:39 AM.
Reply With Quote
  #2  
Old 11-18-2016, 10:23 AM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 113,330
Abronsyth is on a distinguished road
Default

You'd have to actually show us your CSS :)
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote
  #3  
Old 11-18-2016, 12:50 PM
Hall of Famer's Avatar
Hall of Famer Hall of Famer is offline
Administrator, Lead Coder
 
Join Date: Dec 2008
Location: South Brunswick
Posts: 4,448
Gender: Male
Credits: 332,858
Hall of Famer is on a distinguished road
Default

You need to stop calling every problem you encounter 'glitch'. A glitch is a bug with the internal PHP code, your problem clearly is CSS related and nowhere near the definition of a glitch.
__________________


Mysidia Adoptables, a free and ever-improving script for aspiring adoptables/pets site.
Reply With Quote
  #4  
Old 11-19-2016, 02:38 AM
Silver_Brick Silver_Brick is offline
Designer || Coder
 
Join Date: Oct 2016
Location: In Earth
Posts: 205
Gender: Male
Credits: 26,956
Silver_Brick is on a distinguished road
Default

Oh i am sorry hof :(

And yea abro here is mine css
PHP Code:
html
body
{
    
backgroundurl("http://dacankey.mysidiahost.com/picuploads/png/2utq2kg.jpg"no-repeat top center fixed;
    
background-sizecover;
    
margin0;
    
padding0;
    
height100%;
    
width100%;
}

#image {
border-left:opx solid #f5eb9f; 
border-right:0px solid #f5eb9f; 
border-bottom:0px solid #f5eb9f; 
background:url("http://dacankey.mysidiahost.com/picuploads/png/banner.png"center no-repeat;
a href="http://dacankey.mysidiahost.com/";
height:260px;
}


#wrapper {
width:1000px;
margin:0 auto;
}

th {
padding:0px;
background-color#f5eb9f; 
}


#image span {
position:relative;
left:70px;
font-size:60px;
padding:10px;
font-family:GeorgiaTimes New Romanserif;
}

#image a{
color:#73562e;
text-decoration:none;
font-style:italic;
font-weight:bold;
text-shadow0px 1px 1px #eee;
}
#image a:hover {
color:#e6ff5c;
text-shadow0px 1px 1px #fff;
}

td {
background:#f5eb9f; 
}

#menu {
list-style-imageurl("Bullet Flower.png"); 
positionrelative;
right:-750px;
margin:10px;
width:25%;
height:250px;
padding:10px;
border-right10px solid #f5eb9f; 
border-left10px solid #f5eb9f; 
border-top10px solid #f5eb9f; 
border-bottom10px solid #f5eb9f; 
background:#cba774;
vertical-align:top;
}


#menu p{
margin:auto 10px;
padding:2px;
color#e6ff5c;
}

#menu h1 {
font-size11pt;
border-bottom3px solid #DDD;
margin:2px auto 3px 10px;
color#000;
text-transform:lowercase;
}

#menu a {
margin:auto 10px;
displayblock;
border-bottom1px solid #CCC;
padding2px;
padding-left10px;
font-size9pt;
letter-spacing1px;
color#73562e;
}
        
#menu a:hover {
background-color#cba774;
border-bottom-color#000;
color#73562e;
}
    
#content {
vertical-align:top;
padding-left:10px;
position:relative;
left:-250px;
}

#footer {
padding0%;
font-size14px;
border-stylesolid;
border-color#6e6e6e;
border-width1px 0px 0px 0px;
}


#content p {
padding:3px;
margin:auto 10px;
}
#content h1 {
background-color:#cba774;
font-size16pt;
border13px solid #cba774;
margin:10px;
margin-top10px;
color#000000;
}

a{
text-decoration:none;
color:#292925;
}
a:hover {
color:#73562e;
}

code {
display:block;
margin:10px;
padding:5px;
border-top:5px solid #ccc;
border-left:1px solid #ccc;
border-right:1px solid #ccc;
border-bottom:1px solid #ccc;
}
#adoptable {
width350px;
height250px;
border3px solid #cba774;
padding10px;
}
#training {
width150px;
height250px;
border3px solid #cba774;
padding10px;
left400px;
top93px;
}
#clickpagelink {
width710px;
height50px;
border3px solid #cba774;
padding10px;

Reply With Quote
  #5  
Old 11-19-2016, 07:45 AM
Abronsyth's Avatar
Abronsyth Abronsyth is offline
A Headache Embodied
 
Join Date: Aug 2011
Location: NY
Posts: 1,011
Gender: Male
Credits: 113,330
Abronsyth is on a distinguished road
Default

There are some little typos you may want to check in your css though. Body really has no need to use margin, padding, height, or width so you're best off just removing those to cut down on clutter. Under image you have border-left:opx solid #f5eb9f; instead of border-left:0px solid #f5eb9f; (you have o instead of 0). I cleaned it up a bit for you;
HTML Code:
 body{ 
    background: url("http://dacankey.mysidiahost.com/picuploads/png/2utq2kg.jpg") no-repeat top center fixed; 
    background-size: cover; 
} 

#image { 
border-left:0px solid #f5eb9f;  
border-right:0px solid #f5eb9f;  
border-bottom:0px solid #f5eb9f;  
background:url("http://dacankey.mysidiahost.com/picuploads/png/banner.png") center no-repeat;
height:260px; 
} 


#wrapper { 
width:1000px; 
margin:0 auto; 
} 

th { 
padding:0px; 
background-color: #f5eb9f;  
}  

td { 
background:#f5eb9f;  
} 

#menu { 
list-style-image:url("Bullet Flower.png");  
position: relative; 
right:-750px; 
margin:10px; 
width:25%; 
height:250px; 
padding:10px; 
border-right: 10px solid #f5eb9f;  
border-left: 10px solid #f5eb9f;  
border-top: 10px solid #f5eb9f;  
border-bottom: 10px solid #f5eb9f;  
background:#cba774; 
vertical-align:top; 
} 


#menu p{ 
margin:auto 10px; 
padding:2px; 
color: #e6ff5c; 
} 

#menu h1 { 
font-size: 11pt; 
border-bottom: 3px solid #DDD; 
margin:2px auto 3px 10px; 
color: #000; 
text-transform:lowercase; 
} 

#menu a { 
margin:auto 10px; 
display: block; 
border-bottom: 1px solid #CCC; 
padding: 2px; 
padding-left: 10px; 
font-size: 9pt; 
letter-spacing: 1px; 
color: #73562e; 
} 
         
#menu a:hover { 
background-color: #cba774; 
border-bottom-color: #000; 
color: #73562e; 
} 
     
#content { 
vertical-align:top; 
padding-left:10px; 
position:relative; 
left:-250px; 
} 

#footer { 
padding:0%; 
font-size: 14px; 
border-style: solid; 
border-color: #6e6e6e; 
border-width:1px 0px 0px 0px; 
} 


#content p { 
padding:3px; 
margin:auto 10px; 
} 

#content h1 { 
background-color:#cba774; 
font-size: 16pt; 
border: 13px solid #cba774; 
margin:10px; 
margin-top: 10px; 
color: #000000; 
} 

a{ 
text-decoration:none; 
color:#292925; 
} 
a:hover { 
color:#73562e; 
} 

code { 
display:block; 
margin:10px; 
padding:5px; 
border-top:5px solid #ccc; 
border-left:1px solid #ccc; 
border-right:1px solid #ccc; 
border-bottom:1px solid #ccc; 
} 
#adoptable { 
width: 350px; 
height: 250px; 
border: 3px solid #cba774; 
padding: 10px; 
} 
#training { 
width: 150px; 
height: 250px; 
border: 3px solid #cba774; 
padding: 10px; 
left: 400px; 
top: 93px; 
} 
#clickpagelink { 
width: 710px; 
height: 50px; 
border: 3px solid #cba774; 
padding: 10px; 
}
Anyways, I visited your site to check out the theme in action and I am not seeing the issues you are having with alignment being out of place. However, I can scroll down as far as a heading that says "News & Events" but there is nothing else beyond that, no footer. I do not know if this is intentional or not?

Is the current theme on your site the one with the alignment issue, or is it a different theme you are currently testing?
__________________
My Mods Site (1.3.4, 2020 Mods)
Reply With Quote
  #6  
Old 11-19-2016, 11:49 AM
Silver_Brick Silver_Brick is offline
Designer || Coder
 
Join Date: Oct 2016
Location: In Earth
Posts: 205
Gender: Male
Credits: 26,956
Silver_Brick is on a distinguished road
Default

Yes the active theme is having issue and yea i will use that code
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -5. The time now is 01:29 AM.

Currently Active Users: 4230 (0 members and 4230 guests)
Threads: 4,080, Posts: 32,024, Members: 2,016
Welcome to our newest members, jolob.
BETA





What's New?

What's Hot?

What's Popular?


Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2024, vBulletin Solutions Inc.
vBCommerce I v2.0.0 Gold ©2010, PixelFX Studios
vBCredits I v2.0.0 Gold ©2010, PixelFX Studios
Emoticons by darkmoon3636