Moving items to the left

Hi everybody!

I am new here, so firstly I would like to congrats on great templates but also do detailed instructions etc

I have one problems regarding listing items in K2 category. As items in some categories will not have any pictures I am wondering how to move them to the left, in order to not have this blank space? Is it possible?

Pict: https://www.dropbox.com/s/xtnixozv0x…2010.04.36.png

Regards

3 answers

Profile photo of Ninja Lead 0.00 $tone March 13, 2014
Public

You can apply this fix:

Open the templates/ja_university/css/k2.css file

Change

Code:

div.catItemView {
  border-bottom: 2px solid #eee;
  margin-left: 170px;
  padding-bottom: 20px;
}

To

Code:

div.catItemView {
  border-bottom: 2px solid #eee;
  margin-left: 0px;
  padding-bottom: 20px;
}

Once done, clear cache from admin area.

If the issue remains, please send me URL of your site. I will help you out.

#1
rejanigor 0.00 $tone March 15, 2014
Public

Thank you, so simple and fast ! Once question more, how can I hide those circle icons on mobile template?

Pict: https://www.dropbox.com/s/x7k5onfc8a…2022.47.11.png

You can apply this fix:

Open the templates/ja_university/css/k2.css file

Change

Code:

div.catItemView {
  border-bottom: 2px solid #eee;
  margin-left: 170px;
  padding-bottom: 20px;
}

To

Code:

div.catItemView {
  border-bottom: 2px solid #eee;
  margin-left: 0px;
  padding-bottom: 20px;
}

Once done, clear cache from admin area.

If the issue remains, please send me URL of your site. I will help you out.

#2
Profile photo of Ninja Lead 0.00 $tone March 17, 2014
Public

To hide department-list icon in the mobile, you can edit the templates/ja_university/css/layout-mobile.css file by adding:

Code:

#ja-topsl1 .main {
	display: none !important;
}

Let me know if it helps.

#3

Please login or Register to Submit Answer

Written By

Comments