Can Anyone Look at My Simple CSS Stysheet and Help Me?

martinact420

Junior Member
Joined
Sep 28, 2010
Messages
145
Reaction score
24
Hello All! I started my offline business and have my first client who isnt a friend previously.

I am working on this site - http://d3sol.com/ and am wondering what I can add to the custom css style sheet to make the top of the website drop down a few pixels so the title isnt smashed up against the top of the browser.

Any help would be appreciated and I can buy you a beer via PayPal.

Here is the link to the style sheet - http://d3sol.com/wp-content/themes/u-design-child/style.css

Let me know.

Thanks, Tom
 
Hello All! I started my offline business and have my first client who isnt a friend previously.

I am working on this site - http://d3sol.com/ and am wondering what I can add to the custom css style sheet to make the top of the website drop down a few pixels so the title isnt smashed up against the top of the browser.

Any help would be appreciated and I can buy you a beer via PayPal.

Here is the link to the style sheet - http://d3sol.com/wp-content/themes/u-design-child/style.css

Let me know.

Thanks, Tom

Well, your entire webpage is enclosed in 'wrapper-1'.

Code:
<div id="wrapper-1" class="pngfix" style="">

You could do something like this, and style that element:

Code:
#wrapper-1 {
[COLOR=#C80000]     padding-top[/COLOR]: 50px;
[COLOR=#C80000]     background-color[/COLOR]: black;
}

There is already a stylesheet with wrapper-1 , so you can just add my lines above, the link is:

Code:
http://d3sol.com/wp-content/themes/u-design/styles/style1/css/style.css?ver=1.0

So in short, edit that stylesheet I linked above.

BEFORE:
Code:
#wrapper-1 {    
     background-color: #FBFBFB;    
     display: block;    
     float: left;    
     position: relative;    
     width: 100%;
}

AFTER:
Code:
#wrapper-1 {    
     background-color: black;    
     padding-top: 50px;    
     display: block;    
     float: left;    
     position: relative;    
     width: 100%;
}


Hope I helped!
- Metra
 
Last edited:
Back
Top