several questions

Modern e-commerce WordPress theme to build successful online store with WooCommerce support.
GK User
Mon Mar 10, 2014 3:55 pm
hello,

I try to take a unordered lists in three columns, is this possible?
See attached image. (Naamloos-2.png)

Is it possible to reduce? White space above my logo
See attached image. (Naamloos-1.png)

Thanks for your help. sorry for my bad english.

Geert
User avatar
Fresh Boarder

GK User
Tue Mar 11, 2014 8:35 am
Hi,

I'll help you with that, but I need your website URL (you can provide the URL here or via PM).
User avatar
Moderator

GK User
Tue Mar 11, 2014 2:45 pm
Regarding the white space, add this code into css/override.css file (first enable this option from Template Options -> Advanced tab):

Code: Select all
#gk-head {
padding-top: 20px;
}


Unordered lists in three columns is possible but not with shortcodes (nested shortcodes don't work). Try to use this code (in text editor):

Code: Select all
<div class="gk-columns" data-column-count="3">
<div>
<ul data-style="style1">
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
</div>

<div>
<ul data-style="style2">
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
</div>

<div>
<ul data-style="style3">
<li>item1</li>
<li>item2</li>
<li>item3</li>
</ul>
</div>

</div>
User avatar
Moderator

GK User
Tue Mar 11, 2014 5:31 pm
Thanks, it worked.

Sincerely,
Geert Visser
User avatar
Fresh Boarder


cron