can I have a Text Widget different for every page ?

  • Unknown's avatar

    Hi Tess and thanks :)

  • Unknown's avatar

    @TT I meant that information for the blogger.

  • Unknown's avatar

    Oh, I thought you didn’t notice the tag.

  • Unknown's avatar

    How could I have this quotations (a differente one for every page) to stay on the left hand side bar???

    Just sharing it. For each different page.
    The left hand side select theme bar is empty. (no left side bar)
    Each post to create a 2 column table
    Column 1 for left side bar (without widget) but it can be filled with just about anything.
    Column 2 for the content of Your postings

  • Unknown's avatar

    @sulitnih
    Purchase a custom design upgrade http://en.support.wordpress.com/custom-design/ and start your own thread please after you do that as all CSS editing is theme specific. https://en.forums.wordpress.com/forum/css-customization#postform

  • Unknown's avatar

    @ timethief thank’s alot of FYI..

  • Unknown's avatar

    to built your own blog by wordpress. buy a host and a domain, then download the code in wordpress.org

  • Unknown's avatar

    @sulitnih: Despite timethief’s confused admonition, your reply belongs in this thread, because it’s a reply to the original question. Your suggestion is incomplete but correct in essence: yes, you can also create different sidebar text on different static pages in Ascetica without the upgrade (by making it part of the content of the page, and adding coding to make it show up in the sidebar area).
    To do that you don’t need a table, by the way.

  • Unknown's avatar

    In general, for already pretty long threads like this one, it would be better to make a separate help request in the CSS forum instead of moving a thread with many replies to different questions over. It keeps questions and answers more concise, easier to read, and makes it easier to find answers quickly.

    I would like have a quotation from an author to show on one side of every page on my blog.

    There are a few different ways you could do this. Based on your current setup (nothing in the left sidebar), you could re-style blockquote elements to move over to the left. To try it out, follow these steps:

    1. Open the Deliverables page for editing
    2. Highlight the first paragraph
    3. Click the blockquote button in the visual editor
    4. Save changes
    5. Add this to your Appearance → Custom Design → CSS editor:

    blockquote {
    	display: block;
    	width: 160px;
    	position: absolute;
    	left: -50px;
    }
  • Unknown's avatar

    I would like to remove the left hand bar … I bought the custom design upgrade but it does not seem to provide for this kind of customization ..

    That’s a very specific change and you would need to add custom CSS code to the CSS Editor to make it happen.

    To remove the left sidebar from the Ascetica theme, add this to your Appearance → Custom Design → CSS editor:

    #tertiary {
    	display: none;
    }
    
    #content {
    	float: none;
    	padding-left: 0;
    	width: 100%;
    }

    Note that if you make this change, you would need to style the blockquote elements differently from the example above. Here’s one possible re-format:

    blockquote {
    	display: block;
    	width: 160px;
    	padding-bottom: .5em;
    	float: left;
    }

    Note that you can experiment with these examples and adjust the width and spacing values or do things like change float from left to right.

  • The topic ‘can I have a Text Widget different for every page ?’ is closed to new replies.