Skip to content

Commit

Permalink
IGUK-736 and IGUK-745 active state fix on investment opps header and …
Browse files Browse the repository at this point in the history
…removing alt on eyb home (#3749)
  • Loading branch information
stuart-mindt authored Dec 17, 2024
1 parent 2a7068f commit ac670e3
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 7 deletions.
4 changes: 3 additions & 1 deletion international/context_processors.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,9 @@ def international_header(request):
'href': '/international/investment/',
'text': 'Investment opportunities',
'location': 'International header',
'isCurrent': '/international/investment/' in request.path,
'isCurrent': '/international/investment/' == request.path
or '/international/investment/' in request.path
and '?back=' in request.get_full_path(),
},
{
'href': '/international/buy-from-the-uk/',
Expand Down
9 changes: 3 additions & 6 deletions international_online_offer/templates/eyb/index.html
Original file line number Diff line number Diff line change
Expand Up @@ -139,22 +139,19 @@ <h2 class="govuk-heading-l">
</h2>
<ul class="govuk-list">
<li class="govuk-grid-column-one-third govuk-!-margin-bottom-4">
<div class="eyb-connection-image eyb-networking-image"
alt="Image of a person or potential connection"></div>
<div class="eyb-connection-image eyb-networking-image"></div>
<p class="govuk-body govuk-!-font-weight-bold govuk-!-text-align-centre govuk-!-margin-bottom-0">
Browse our lists of UK trade associations and get networking
</p>
</li>
<li class="govuk-grid-column-one-third govuk-!-margin-bottom-4">
<div class="eyb-connection-image eyb-trade-image"
alt="Image of a person or potential connection"></div>
<div class="eyb-connection-image eyb-trade-image"></div>
<p class="govuk-body govuk-!-font-weight-bold govuk-!-text-align-centre govuk-!-margin-bottom-0">
Add hand-picked trade events to your calendar
</p>
</li>
<li class="govuk-grid-column-one-third govuk-!-margin-bottom-4">
<div class="eyb-connection-image eyb-expert-image"
alt="Image of a person or potential connection"></div>
<div class="eyb-connection-image eyb-expert-image"></div>
<p class="govuk-body govuk-!-font-weight-bold govuk-!-text-align-centre govuk-!-margin-bottom-0">
Find UK experts in finance, law, and tax in our business directory
</p>
Expand Down

0 comments on commit ac670e3

Please sign in to comment.