• I’m completely new to this, so bare with me – I’m using XAMPP to try stuff on my own PC before installing and uploading everything to an actual site.

    I installed the default 2011 theme and uploaded the desired background image, but how can I remove absolutely everything else?

Viewing 3 replies - 1 through 3 (of 3 total)
  • remove absolutely everything else

    not really remove, more like hide:
    try:

    #page, #page * { visibility: hidden; }
    or alternatively, use display:none;

    you can have that much easier with a basic html web site.

    Thread Starter evuki

    (@evuki)

    Yeah, I know, but I need to have this image until I finish the wordpress template, so…

    Thanks

    then even better, so that visitors see only the background, but you as looged-in admin can see it all:

    replace the earlier suggestion with:

    #page { display: none; }
    .logged-in #page { display: block; }

    PS:
    important: create a child theme to work with:
    http://codex.ww.wp.xz.cn/Child_Themes

    do not edit the default theme Twenty Eleven directly.

    you can add those styles into style.css of the child theme, directly after the line with @import..

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

The topic ‘Remove everything except background image’ is closed to new replies.