Categories

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 Jan 07, 2014 3:36 pm
Reply with quote
Report this post
http://ringnews24.com/press-releases

How would I make the articles title smaller?

How would I put the articles text beside the articles image? Currently the articles text is under the image.

Thanks
User avatar
Gold Boarder

GK User
Tue Jan 07, 2014 4:00 pm
Reply with quote
Report this post
Hi,
General tip: http://www.gavick.com/documentation/joo ... -size-etc/

Solution in case #1:
Code: Select all
article header h1, .category header, article header h2 {
    font-size: 30px;
    line-height: 35px;  }
User avatar
Platinum Boarder

GK User
Tue Jan 07, 2014 4:05 pm
Reply with quote
Report this post
Solution #2 for image and text, try this:

Code: Select all
.itemContainerLast:first-child .itemImageBlock, .clr + .itemContainerLast .itemImageBlock {
    float: left;
    padding: 6px 15px 0 0;
    width: 200px;
}


You will get this
User avatar
Platinum Boarder

GK User
Tue Jan 07, 2014 4:19 pm
Reply with quote
Report this post
Pawel F thats exactly what I wanted.

Looks a lot smarter and now its easyier without the big images, text and the gap it took up.

Easyier to find the latest news now.

Thanks for your help.
User avatar
Gold Boarder

GK User
Tue Jan 07, 2014 7:33 pm
Reply with quote
Report this post
Is there a way to set the maxium height of an image in the categories?
User avatar
Gold Boarder

GK User
Tue Jan 07, 2014 11:05 pm
Reply with quote
Report this post
Sure, you have to use max-height with value.
For example
Code: Select all
max-height:250px;


and add it for selected Class.
User avatar
Platinum Boarder

GK User
Wed Jan 08, 2014 12:22 am
Reply with quote
Report this post
Sorry Pawel, Were do I add it ? say I wanted to add it here http://ringnews24.com/press-releases
User avatar
Gold Boarder

GK User
Wed Jan 08, 2014 5:08 pm
Reply with quote
Report this post
I suppose also for override.css line ~~128 - to my code which I added you before
User avatar
Platinum Boarder

GK User
Wed Jan 08, 2014 5:10 pm
Reply with quote
Report this post
Here:
Code: Select all
.itemContainerLast:first-child .itemImageBlock, .clr + .itemContainerLast .itemImageBlock {
    float: left;
    padding: 6px 15px 0 0;
    width: 200px;
    max-height:250px;
}
User avatar
Platinum Boarder

GK User
Fri Jan 17, 2014 1:23 am
Reply with quote
Report this post
Thanks Pawel

Some catergories aren't showing the changes, how would I sort them?

Calender - http://ringnews24.com/component/k2/item ... /2014/1/16
Tags - http://ringnews24.com/world-boxing-news ... %20Ratings
Writers Columns - http://ringnews24.com/world-boxing-news ... 574-robday
User avatar
Gold Boarder

GK User
Sat Jan 18, 2014 9:18 pm
Reply with quote
Report this post
Hi Rob again.
Are you want small images also on this views ? If yes, change "old" code from
Code: Select all
.itemContainerLast:first-child .itemImageBlock, .clr + .itemContainerLast .itemImageBlock {
    float: left;
    max-height: 175px;
    padding: 6px 15px 0 0;
    width: 200px;
}

To
Code: Select all
.itemContainerLast:first-child .itemImageBlock,
itemList .itemImageBlock,
.clr + .itemContainerLast .itemImageBlock {
    float: left;
    max-height: 175px;
    padding: 6px 15px 0 0;
    width: 200px;
}
User avatar
Platinum Boarder

GK User
Sun Jan 19, 2014 3:30 pm
Reply with quote
Report this post
Hi Pawel,

I added the new code but nothing has changed...
User avatar
Gold Boarder

GK User
Sun Jan 19, 2014 6:26 pm
Reply with quote
Report this post
upss sorry, I forgot about "." before itemList -- :whistle:

MUST BE


Code: Select all
.itemContainerLast:first-child .itemImageBlock,
.itemList .itemImageBlock,
.clr + .itemContainerLast .itemImageBlock {
    float: left;
    max-height: 175px;
    padding: 6px 15px 0 0;
    width: 200px;
}
User avatar
Platinum Boarder

GK User
Mon Jan 20, 2014 2:57 pm
Reply with quote
Report this post
Pawel thats the same code as the previous above post.
User avatar
Gold Boarder

GK User
Mon Jan 20, 2014 4:29 pm
Reply with quote
Report this post
not really, because there is . (dot) - before second line, did you add it ?
Please update your override.css - if you need my help,
User avatar
Platinum Boarder

GK User
Tue Jan 21, 2014 10:41 am
Reply with quote
Report this post
Thanks Pawel
User avatar
Gold Boarder


cron