I wonder if someone could help me troubleshoot some Anchor Link problems. I have 13 shows on the same page similar to the one below where I've created links from Read More and an image called Ticket.jpg. Both links work and go to the correct page location. The problem is that all text in the shows below become active links as well.
This is my problem page: http://bluefrogstudios.ca//index-copy.html
I've tried everything to correct this without any luck. Excuse my limited html knowledge.
"TRIOLOGY with Miles Black, Jodi Proznick & Bill Coon"
Saturday Feb.15th, 2014 Doors: 7:00 pm Show 8:00 pm
Semiahmoo Arts presents TRIOLOGY for another “Live From Blue Frog” concert recording...
READ MORE..
it looks like you have missed the closing </a> tag after a link in your HTML
Line 110:
<div class="ticket"><a href="/newshows.html#cuda"><img src="images/Ticket.png" alt="Ticket"></div>
Related
i know <h2>Hamburger</h2> are good, but how about this:
<div><h2>Food » Hamburger</h2></div>
or thats are ok for google seo?
The tag with an anchor link inside it will work same as a normal tag for Google SEO. Both the methods are Ok, but the problem that can occur is your readers may go away because you added a hyperlink in the Heading text of your webpage. So, it is not a good practice to use hyperlinks in tags or any tag.
I am using the ThemeMachine and also trying the CustomThemeMachne themes - they reveal I should have an aside1, 2, and 3 .. I was under the impression that Aside was Aside of the main content and not underneath the main content; and that is where they show up now - right under the main content. What I would like to have is my Aside1 to the Left Side of the Entire Page for various content such as article links and Adverts and also an Aside on the Right side of the Entire Page. See the picture below where RED Rectangle is the page menu / main content / etc , the Blue rectangles are the Aside 1 and Aside 3
I am having some difficulty in figuring out how to do that - since I am really new to Orchard and my skill sets with MVC model are limited.
I would like some guidance or an example of exactly how I can accomplish this with either of these two themes after an example or really good info I feel I will be able to figure out what I need to do.
The rectangles are called zones. These are defined in the Theme.txt. Search for a line that starts with Zones:, it states each zone in a simple comma separated list, for example:
Zones: Navigation, Content, UserDisplayName, ...
The actual render order of the zones is defined by HTML markup in the Layout.cshtml, for example:
#{
Func<dynamic, dynamic> Zone = x => Display(x); // Zone as an alias for Display to help make it obvious when we're displaying zones
}
<div>
<div>
You are logged in as #Zone(New.UserDisplayName())
</div>
<nav>
#Zone(Model.Navigation)
</nav>
<div>
#Zone(Model.Content)
</div>
</div>
This is all well documented at http://docs.orchardproject.net/en/latest/Documentation/Anatomy-of-a-theme/
Using the Rails model and controller, I have created a few items. Each item has a year (2011, 2012, 2013, 2014, 2015). I can access the items#show by using a vanity URL that I defined: example.com/items/2015-item. This works for any year and item.
In the top navigation bar, I have a button that when clicked, I want it to link directly to the 2015-item page. The current link is:
link_to ('items/2015-item')
This works when I click it from the home page, but if I am already on the 2015-item page, I get the link: example.com/items/items/2015-item. Obviously it is tacking on the extra items directory, but I haven't been able to figure out a way to define the item_path in routes.rb.
Any suggestions would be appreciated!
Try using this instead
link_to('/items/2015-item')
I have used the information on this site and at this page
https://support.google.com/analytics/answer/1136920?hl=en
to add tracking on my outbound links (pictures and texts) at this page
http://virginialidar.com/index-2.html
I am trying to view them in Google Analytics (Reporting > Behavior > Events > Overview) but no clicks are showing up. I have visited the site and clicked the links may times to test. It has been about 72 hours since I added the code.
Can someone view source at http://virginialidar.com/index-2.html and see what I am doing wrong? I think it may be the image links
It looks like you've copied the "smart" quotes instead of the straight quotes. You currently have:
onclick=”trackOutboundLink(‘http://qcoherent.com/evaluation.html’); return false;"
When it should be...
onclick="trackOutboundLink('http://qcoherent.com/evaluation.html'); return false;"
I'm actually absolutely new to Typo3 and need some help. I've got a site (6.1.5) with a main menu - but none of the links has a title:
<li>
page1
</li>
<li>
page2
</li>
In the backend I can use "Page Title", but nothing appears in the frontend.
Thanks in advance!
Dublay
We need to know more to help!
Have a look at the template section in the BE Menu. Look if you find there an Object named TMENU. Is so, this would be your solution:
ATagParams = title="{field:abstract // field:subtitle // field:title}"
ATagParams.insertData = 1
Like that first the abstract is taken, if empty the subtitle, if empty the title.
Have a look here: http://www.serious-cool.de/webdesign/typo3/dynamische-linktitel-im-menue/
I you cannot find anything alike, your template is propably rendered with fluid. That means you have somewhere in your system a navigation.html file you need to find and modify.
Since Typo3 is very dynamically developing there are more then one possibility to render a menu....