Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Who can provide me a clean CSS? WordPress

  • SOLVED

Hi, I messed up my CSS somehow, who can send me a clean CSS for:

http://guidoflueck.com/beauty/

It should look almost like here:

http://design-studio-basel.ch/guidoflueck/events-3/

<strong>But</strong> not this font and the sidebar should be on the right side below the logo;
content w 800px, sidebar 200px

The gap between menue and content shoul be smal, 30px

Remove 'Bearbeiten' if possible.

I would like just to paste the CSS.

Answers (2)

2010-05-16

Oleg Butuzov answers:

you are using two styleshits .. and thay overwrite somehow

2c-r-fixed.css
style.css

you should turn off style.css on beuty page and turn on default.css


Simone Fuchs comments:

I deleted the second CSS, but the content is still cut off... And I forgott, I woud like to hiede page titles, but show article titles.


Simone Fuchs comments:

but style.css is my main childtheme css... It should overrite default.css

2010-05-16

Svilen Popov answers:

<strong>Try this</strong>
1. Open <em>style.css</em> and remove width from <em>#containter</em>;
2. Add this to your css file
#container {
width: 800px;
float: left;
}
.aside {
float: right;
width: 200px;
color:#666;
}
#footer {
clear: both;
}