Displaying text in a different place on a template

  • I’m currently using the sundance template and I want to have a paragraph of text between the bottom border of the carousel and the first post title.

    Any thoughts on if this would it be possible and easily done with some custom CSS?

  • I think you could do this by re-positioning a text widget.

    Here is an example to start with:

    #YOUR_TEXT_WIDGET_ID {
    	width: 984px;
    	position: absolute;
    	margin-top: -70px;
    	margin-left: -690px;
    }

    You will need to add a text widget first and then view the page source and find out the unique ID assigned to that text widget, then replace YOUR_TEXT_WIDGET_ID with that value. You will also need to adjust the numbers so until it fits.

    If you have any trouble, please post a link to your blog after you have added the paragraph into a text widget.

  • The topic ‘Displaying text in a different place on a template’ is closed to new replies.