maxwellmill
Forum Replies Created
-
Hi Tobias,
While I am not a new programmer I am not completely up to date as to what html can do.That is correct I would like the text to land in the blank space (beige)
I am not familiar with what you have mention as below.
The advantage of the table is I would be able to set a white table cell if I need to, however your idea seems to be ok also.Could you give me an example would appreciate it greatly
I appreciate your help greatly
Maxwell
Because, if that’s the case, you should actually not use a table, but a more modern approach with HTML <div> elements. One “outside” <div> would get the background image, and one smaller inner <div> could be positioned relative (so that you can set the exact position) and hold the text.
Hi Tobias,
many thanks for you help..
At the moment I am setting the height of all the table cells
Is there code to set the height of the table so i can individually
then set the cell heights so as to get the text to land on the blank part of the background
Kind Regards
Maxwell
—————————code current—————
‘
.tablepress-id-7 {
background: url(http://www.ilookmystyle.com.au/wp-content/uploads/2013/08/ilooklapatisserie_955.jpg);
}.tablepress-id-7 tbody td {
background-color: transparent !important;
background-repeat: no-repeat;
border: 1px;
height: 330px; (this seems to be setting cell heights)
}
,Hi Tobias
May I thank you as I have the background showing now so we are nearly there.
I seem to need to set a table height to show the entire image but now the image repeats.
I will try to add text into a table cell to land on the blank part of the page
The rounded corners worked great !!!
———————-code I am using is below—————-
‘
.tablepress {
font-family: Verdana, Geneva, sans-serif;
font-size: 14px;
font-weight: normal;
background-image: url();
background-repeat: no-repeat;
-moz-border-radius: 25px;
border-radius: 25px;
color: black;
}.tablepress-id-7 {
background: url(http://www.ilookmystyle.com.au/wp-content/uploads/2013/08/ilooklapatisserie_955.jpg);
}.tablepress-id-7 tbody td {
background-color: transparent !important;
background-repeat: no-repeat;
border: 1px;
height: 690px;
}
‘