Structure Theme
-
I need to know how to put an image in my frontpage top left.
The blog I need help with is: (visible only to logged in users)
-
You can add a header at appearance > header that will span the full width of the theme at the top (see the yellowish part here: http://allthekingshorses.wordpress.com/ as an example. You can make the canvas for the image the full width and height of the standard image and then have you actual image on that canvas at top and left.
To do it via the CSS, you would do this.
#header h1 a, #header h1 a:visited { background: url("URL of image") no-repeat scroll left top transparent; } -
And actually I see you’ve done that with the current VEC | Abogados stuff. Did you want to keep that image and add another one? If so, the first thing you need to do is to recreate the existing header image you have as a transparent PNG with no background color. Then you would add the other image to #wrap as below.
#wrap { background: url("URL of image") no-repeat scroll 0 0 transparent; }You will have to adjust the positioning values (0 0) as needed to get the image where you want it.
-
One more option is to redo you header image and incorporate the graphic that you want on the left side into that header image.
-
-
- The topic ‘Structure Theme’ is closed to new replies.