• Is there anyway i could possibly make my main css background not the actually wallpaper but it ware its white on my site is there anyway i could make that transparent somehow to blend with the background. I’m not sure of what codes/pages to edit. If anybody can help thanks!
    http://www.duceman.com

Viewing 3 replies - 1 through 3 (of 3 total)
  • You would do this by changing styles in the style.css, looking at the background you would need to change the font color as well.

    You will need to download and use a Twenty Eleven child theme as you are using the Default Theme and the changes will be lost on update.

    I have a post on switching backgrounds in twenty ten, that might help, but it changes all the backgrounds to transparent.

    Parts of styles are the bits you should add, remove the part that hides the image, if you are keeping it, and the #access if you want a solid menu bar.

    It might be worth switching to the dark theme option, Admin > Appearance > Theme Options and dark theme.

    Add something like this into the child themes style.css

    /* Menu, Main Content area and Sidebars backgrounds */
    #wrapper,#access,#primary,#secondary{
       background: transparent;
    }
    
    /* Lets change the stick post format */
    .home .sticky{
    	background: transparent;
    	border: solid 1px #555;
    } 
    
    /* The menu Text Color */
    #access a {
    	color: #ccc;
    }
    
    /* Hide the header image */
    #branding img {
    	display: none;
    } 
    
    /* And this is that black bar at the foot of the theme */
    #colophon {
    	border: none;
    }

    HTH

    David

    Thread Starter colinodle

    (@colinodle)

    is there another way I could contact you directly via email ect. You’r more then helpful i have a couple questions.

    If you have specific questions about the theme, then the forum is this best place to ask, answers are then shared with others that have the same questions, that is the way with non supported free software.

    If you want to contact me then add a comment to the post in the ‘switching backgrounds’ link above, if I feel your questions are better answered here then I will redirect you back to the forum.

    Regards

    David

Viewing 3 replies - 1 through 3 (of 3 total)

The topic ‘default wordpress theme’ is closed to new replies.