K2 SINGLE ITEM VIEW CUSTOMIZATION

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Tue Dec 24, 2013 12:28 pm
Reply with quote
Report this post
As you can see here:
https://dl.dropboxusercontent.com/u/4395035/03.jpg

I want
the extrafields block (<div class="itemExtraFields">...</div>)
to be displayed right next to
the item image block (<div class="itemImageBlock">...</div>)
instead of under it.

If you can't edit the file here:
https://dl.dropboxusercontent.com/u/4395035/item.php
can you just suggest me how to make two <div>...</div> blocks to be displayed next to each other instead of in two separate "rows", thanks?
User avatar
Expert Boarder

GK User
Tue Dec 24, 2013 4:47 pm
Reply with quote
Report this post
Hi,
As so might know typical we do not make customization for our clients.
That's why I can give you only tips.

1) in item.php file you have to change location of <div class="itemExtraFields">...</div>
must be after
<div class="itemImageBlock">...</div>

use HTML/PHP editor to do this....

2) Then -- Use following css code

Code: Select all
.itemImageBlock { float: left; }

.itemExtraFields {
    float: right;
    max-width: 350px;
}
User avatar
Platinum Boarder


cron