All extensions are free now. Because it was coded by Russians.

Changing layout search result in Joomla Articles Good Search

Please Log in or Create an account to join the conversation.

#
Hi,

I have an issue in changing the layout of the search result overview. It's more in the php script. I like to have the image floating left and the title and custom fields float right, on the same level as the image.
I added two images, one how I have it on the rest of my website, the other how I see my results in the search results.
Can you direct me to the files I need to change to get the title and custom fields move to the right of the image?

Thanks in advance. Job
Attachments:

Please Log in or Create an account to join the conversation.

#
Hello, Job.

Thanks for your post.

More likely you will need to change the layout and override the template file. I need to check your site for check it. Could you send me direct link to search results page?

Please Log in or Create an account to join the conversation.

#
Hi,
sorry for my late reply. Part of the layout I've got working via css in the module. But still, the title doesn't want to move properly next of the image.
The link is: kapergerlings.nl/zoeken?field34%5B%5D=He...leId=315&Itemid=1051

Hope you can give me a guide line.

Best wishes Job

Please Log in or Create an account to join the conversation.

#
Hello, Job.

You can try to apply this css style:

h3.item-title { display: inline-block; }

Also, you can try to fix it in the template file and move the title code in the same container with the fields.

Cut this code:
	<h3 itemprop="name" class="item-title">
		<a href="<?php echo JRoute::_(ContentHelperRoute::getArticleRoute($item->slug, $item->catid, $item->language)); ?>" itemprop="url">
			<?php echo $item->title; ?>
		</a>
	</h3>

And move it inside <div class="item-body">

Please Log in or Create an account to join the conversation.

#
Hi,

The css code did the trick already! Thank you for your help.
best wishes, Job