For my Image gallery I have me decided for the default theme. The description from the single picture is under the image, now. How can I make that the description of the image is on the right side from the Image?
You will have to modify the appropriate stylesheet. (depends on the theme colors you have set in your theme options) The stylesheet can be found here: themes -> default -> styles
fretzl can you help me figure out the details on this one? I'm pretty comfortable with css but cannot for the life of me figure out how to move the description off to the right Thanks
You can try to add something like this to your stylesheet. ` #narrow p { width: 300px; position: relative; top: -400px; left: 600px; } ` This of course requires the description to be wrapped in <p> tags. (that's what the editor normally does) Check the HTML output of the editor if it doesn't work properly.
Comments
The stylesheet can be found here: themes -> default -> styles
can you help me figure out the details on this one?
I'm pretty comfortable with css but cannot for the life of me figure out how to move the description off to the right
Thanks
`
#narrow p {
width: 300px;
position: relative;
top: -400px;
left: 600px;
}
`
This of course requires the description to be wrapped in <p> tags. (that's what the editor normally does)
Check the HTML output of the editor if it doesn't work properly.
It would be better to modify the theme.