- Posts: 16
COMMUNITY FORUM
Please note that official support for commercial extensions & templates is provided in the Subscriber Help Desk.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Support requests should ONLY be directed there and require an active subscription plan.
This forum board is to be used for archive purposes and knowledge exchange ONLY.
Pictrure shadow space
- chris brice
- Topic Author
- Offline
- New Member
Less
More
11 years 1 month ago #137039
by chris brice
Pictrure shadow space was created by chris brice
nuMagazine
hi just installed this template ,in category view theres a big gap between picture and text ,I think its something to do with the backing of the picture as this can be seen were I have yet to put a picture ...bit hard to explain so heres a link to the problem. changing the size of picture does mot work as the seem to be a portrait rather than landscape type .
also how do I remove the banner which is duplicated from the top to the bottom ,,just need it at the top
thanks in advance
hi just installed this template ,in category view theres a big gap between picture and text ,I think its something to do with the backing of the picture as this can be seen were I have yet to put a picture ...bit hard to explain so heres a link to the problem. changing the size of picture does mot work as the seem to be a portrait rather than landscape type .
also how do I remove the banner which is duplicated from the top to the bottom ,,just need it at the top
thanks in advance
Please Log in or Create an account to join the conversation.
- Yiota
- Offline
- Elite Member
Less
More
- Posts: 311
11 years 1 month ago #137040
by Yiota
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Yiota on topic Pictrure shadow space
Hello,
You can add the following CSS snippet in your custom.css file located in templates/numagazine/css folder.
div#itemListLeading span.catItemImage,
div#itemListPrimary span.catItemImage,
div#itemListSecondary span.catItemImage,
div#itemListLinks span.catItemImage {height:auto;}
Which banner is duplicated at the bottom? Could you provide a link or a screenshot?
Thank you.
You can add the following CSS snippet in your custom.css file located in templates/numagazine/css folder.
div#itemListLeading span.catItemImage,
div#itemListPrimary span.catItemImage,
div#itemListSecondary span.catItemImage,
div#itemListLinks span.catItemImage {height:auto;}
Which banner is duplicated at the bottom? Could you provide a link or a screenshot?
Thank you.
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- chris brice
- Topic Author
- Offline
- New Member
Less
More
- Posts: 16
11 years 1 month ago #137041
by chris brice
Replied by chris brice on topic Pictrure shadow space
Thankyou that has worked well .it is now as I wish .
the logo banner template parameter (section logo) has auto generated to (bottom 1) may be something simple logo was loaded correct way , direct into template parameters/standard/ branding/ logo image/ upload so must be a simple fix I guess?
link
www.motorcarhistory.com/
site may load a bit clow as all catch systems off until design sorted
thanks again
the logo banner template parameter (section logo) has auto generated to (bottom 1) may be something simple logo was loaded correct way , direct into template parameters/standard/ branding/ logo image/ upload so must be a simple fix I guess?
link
www.motorcarhistory.com/
site may load a bit clow as all catch systems off until design sorted
thanks again
Please Log in or Create an account to join the conversation.
- chris brice
- Topic Author
- Offline
- New Member
Less
More
- Posts: 16
11 years 1 month ago #137042
by chris brice
Replied by chris brice on topic Pictrure shadow space
Thankyou that has worked well .it is now as I wish .
the logo banner template parameter (section logo) has auto generated to (bottom 1) may be something simple logo was loaded correct way , direct into template parameters/standard/ branding/ logo image/ upload so must be a simple fix I guess?
link
www.motorcarhistory.com/
site may load a bit slow as all catch systems off until design sorted
thanks again.
the logo banner template parameter (section logo) has auto generated to (bottom 1) may be something simple logo was loaded correct way , direct into template parameters/standard/ branding/ logo image/ upload so must be a simple fix I guess?
link
www.motorcarhistory.com/
site may load a bit slow as all catch systems off until design sorted
thanks again.
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
11 years 1 month ago #137043
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic Pictrure shadow space
Hello Chris,
This is the code that generates the bottom logo.
It is located in yout template's index.php near the bottom of it. Depending on the template version you are using it is near line 160 or line 140.
You can safely strip it since the update packages will not contain index.php
<div class="btmLogo">
<a href="<?php echo $siteurl; ?>" title="<?php echo $logoAltText; ?>">
<?php if($logoImage): ?>
<img src="<?php echo $logoImage; ?>" alt="<?php echo $logoAltText; ?>" />
<span class="hidden"><?php echo $logoText; ?></span>
<?php else: ?>
<span><?php echo $logoText; ?></span>
<?php endif; ?>
</a>
</div>
This is the code that generates the bottom logo.
It is located in yout template's index.php near the bottom of it. Depending on the template version you are using it is near line 160 or line 140.
You can safely strip it since the update packages will not contain index.php
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- chris brice
- Topic Author
- Offline
- New Member
Less
More
- Posts: 16
11 years 1 month ago #137044
by chris brice
Replied by chris brice on topic Pictrure shadow space
hi Krikor
Thankyou excellent that has worked .
one last thing
on the pictures again same as before
but the one for tag results
so the code as below but for tag results
div#item ? span.catItemImage, i guess (tag)
www.motorcarhistory.com/index.php/component/k2/itemlist/tag/Sunbeam
Thankyou excellent that has worked .
one last thing
on the pictures again same as before
but the one for tag results
so the code as below but for tag results
div#item ? span.catItemImage, i guess (tag)
www.motorcarhistory.com/index.php/component/k2/itemlist/tag/Sunbeam
Please Log in or Create an account to join the conversation.
- Krikor Boghossian
- Offline
- Platinum Member
Less
More
- Posts: 15920
11 years 1 month ago #137045
by Krikor Boghossian
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Replied by Krikor Boghossian on topic Pictrure shadow space
This snippet ensures that a proper box will be shown when no image is present.
It was 230px and a value around 100 - 125px will be fine. You can always decrease it if you want.
PS. Place this snippet in your custom.css so you won't lose anything when you update
span.genericItemImage, span.tagItemImage { height: 100px; }
It was 230px and a value around 100 - 125px will be fine. You can always decrease it if you want.
PS. Place this snippet in your custom.css so you won't lose anything when you update
JoomlaWorks Support Team
---
Please search the forum before posting a new topic :)
Please Log in or Create an account to join the conversation.
- chris brice
- Topic Author
- Offline
- New Member
Less
More
- Posts: 16
11 years 1 month ago #137046
by chris brice
Replied by chris brice on topic Pictrure shadow space
thanks for your help
Please Log in or Create an account to join the conversation.