You need to Register for free and Login to post a message in the forum.

Forum

Subject: links doesn't appear in site
Prev Next
You are not authorized to post a reply.

Author Messages
tiktakit
Nuke Pro
Nuke Pro
Posts:62

22 Aug 2006 3:14 AM  
Hi again.
I'm having trouble displaying my site links (im not using the [LINKS] module).
Im using this styles:
.CommandButton   
{
    font-family: Tahoma, Arial, Helvetica;
    font-size: 13px;
    font-weight: normal;
}
a.CommandButton:link {  color: #294F90; text-decoration: none }
a.CommandButton:visited {  color: #294F90; text-decoration: none }
a.CommandButton:hover {  color: #DB031B; text-decoration: none} 
a.CommandButton:active {  color: #294F90; text-decoration: none }


and i have normal links in my page, meaning: <a>some link</a>.
I read on your styling tollkit that all the links, including the links in the CSS that i get thorugh the "Site Settings" menu, should be ordered by link,visited,hover,active.

I changed all the references to the a. styles so it will be ordered correctly, im my CSS and in the site CSS. Unfortunatly, the skins still does not appear.

Did i miss something ?

Thanks,
Hadar
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

22 Aug 2006 3:39 AM  
Which links are you trying to style?

The link, visited, hover, active order is important if you wish the active state to work. - It will not affect being able to actually style the links.

The styling mentioned above will just style any links that are in the CommandButton class.

If you want to style links for instance in the Text/HTML module, you need to style the Normal Class:

.Normal A:link, .Normal A:visited, .Normal A:active
{
    text-decoration: none;
    color: #036;
}
.Normal A:hover
{
    text-decoration: underline;
    color: #F00;
}

Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
tiktakit
Nuke Pro
Nuke Pro
Posts:62

22 Aug 2006 4:47 AM  
how about links that are not inside a module?
this one doesn't work:
a:link { color: #294F90; text-decoration: none }
a:visited { color: #294F90; text-decoration: none }
a:hover { color: #DB031B; text-decoration: none}
a:active { color: #294F90; text-decoration: none }
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

22 Aug 2006 4:58 AM  
It depends which links you are trying to style, for instance for the login links, have a look at:
http://www.skinningtoolkit.com/SkinObject/tabid/93/Default.aspx

Does this help?

Which links are you trying to style?

Do you have a URL?

Thanks,

Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
tiktakit
Nuke Pro
Nuke Pro
Posts:62

22 Aug 2006 5:21 AM  
In my skin, I added link. Its a footer; I want to add some links at the footer of the skin, currently without using the [LINKS] module.
So these are just regular html links - its not in a module or something.
url :http://h.dnn.selfip.com/%D7%A1%D7%A7%D7%99%D7%A8%D7%94%D7%97%D7%95%D7%93%D7%A9%D7%99%D7%AA/tabid/132/Default.aspx

the kinks should appear at the botoom, on the right to the small printer menu icon.
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

22 Aug 2006 5:36 AM  
Hello,

Thanks for the URL, looking at your skin, the a:link css does work. - If you change the styling of those it changes the colour of the links for the text  "Created by - Target Advanced Webs "

I don't see any links to the right of the printer icon though. - Am I mis-understanding what you are trying to do?

Can't you just set up your links exactly as you have done for the "Created by - Target Advanced Webs" text in your skin?

Or - do you wish to add links from a DotNetNuke page? - If you do why don't you just use a Text/HTML module? - If you want to style them differently to the normal class then put a div tag around them and give them a different CSS class.

Thanks,


Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

22 Aug 2006 5:37 AM  
or try specifying the class directly within the a tag ie. < a class="mystyle" href=" .. .. etc.. ..

Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
tiktakit
Nuke Pro
Nuke Pro
Posts:62

22 Aug 2006 5:41 AM  
That's just the problem - there should be links next to the printer icon! it just disappeared from the skin!
i think that in a moudle it not very convinient because i'll need to duplicate my module to each page. I want the links automatically in the skin...
I'll try to do it as u said with the "created by..". I'll keep u posted ;)
tiktakit
Nuke Pro
Nuke Pro
Posts:62

22 Aug 2006 5:49 AM  
The problem is more sevear than i thoguht: It can't display links in hebrew! what should i do ? All the links are in hebrew. I changed on the english and it appeared. That's a serious bug for me. Do u have suggestions ?
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

22 Aug 2006 6:03 AM  
Hello,

Looking at the source code, these 3 links:

/Portals/_default/Skins/compass/www.yahoo.com

Just have blank spaces where the text should be for the links - are these the links that you are trying to create?

Are you creating your skin using a .htm and skin.xml file. - Perhaps something is happening when DNN is parsing the skin.

I would try editing the your .ascx file direct that is on your DNN portal and see if that displays the hebrew.


Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
tiktakit
Nuke Pro
Nuke Pro
Posts:62

24 Aug 2006 5:57 AM  
yes - that's the links. i tried to edit the ascx files, which the links were really missing in - didn't help. I added them manually, i checked im editing the right file (other things DID change) but it doesn't show up hebrew. i dunno what to do..
leesykes
DNN Creative Staff
Nuke Master III
Nuke Master III
Posts:3375

24 Aug 2006 7:52 AM  
I think the only option you have left is to add a text / html module to the footer and then add your links in and then set the module to display on all pages. - The hebrew links work in the main content area, so this doesn't really make sense why they would disappear when you add then directly to the skin.

Lee Sykes
Site Administrator
Subscribe to the website : DotNetNuke Video Tutorials : The Skinning Toolkit : DotNetNuke Podcasts

Twitter: www.twitter.com/leesykes

Lee Sykes's Facebook Profile
You are not authorized to post a reply.
Forums > DotNetNuke® > DotNetNuke® Questions > links doesn't appear in site



ActiveForums 3.7

Latest Forum Posts

RE: No Access for me too by ristori
it is ok now. Thanks for this action.
skin/container error load by islandman
Has anyone else run across this error when loading skins or containers from site settings?I am using...
Email Set UP per Portal by islandman
How do I set up a unique email address per domain name off 1 hosting environment. for example...m...
RE: localhost Install issues by cdees
Lee: I wanted to follow up on this for anyone following this thread. I have been unable to solve t...
RE: Add New Profile Properties by WSI
HI Joe, The DNN version is 4.5.5. Thanks, Cliff
Change Skin on URL by vinita
Hi,Can the skin be changed based on the url used to access a portal. Multiple portal aliases may be ...
problem creating child portal by kabamaro
  Hello all i have 4 Aliases for my parent portal , lets call them X,y,Z,WIn all Aliases i can creat...
problem creating child portal by kabamaro
  Hello all i have 4 Aliases for my parent portal , lets call them X,y,Z,WIn all Aliases i can creat...
Best DNN portal ever! by derpir
I have been a subscriber since august 2008, and DNNCreative.com is simply the best DNN Portal, their...
RE: skinning trouble by derpir
Hello Yes could you be so kind and take a look att the htm-file and css-file.I would be very gratef...
Search function is not working by kishorpawar
I am using Seach module in my project but not working, i have set   host setting alsoHost --> Schedu...
RE: backend is changing from sql2005 to sql2008 by leesykes
hello,There should not be any code changes needed, but you'll need to make sure that SQL 2008 upgrad...
RE: skinning trouble by leesykes
Hello,I would need to see your code to help you with this one, you can zip up your files and attach ...
RE: Installing DotNetNuke 4.9.00 on VWD 2005 w/ SQL server 2008 by leesykes
I have run a test with SQL Server 2008 express and DotNetNuke installed in exactly the the same way ...
RE: Issue 39 Interview by leesykes
thanks Bill, glad it was useful, we will have a think about the best way to approach this,Thanks,
RE: Issue 39 Authentication by leesykes
yes I have a live site in 4.9.0 at it seems stable as well.
backend is changing from sql2005 to sql2008 by meenu
hi all advance thanks. in my DNN0408 website am using sql2005 as backend.now planning to remove sq...
About catalook error by kishorpawar
 I am  using dnn 4.8.4 version in my project, this  site is in 2 language,whenver i click on the BYN...
RE: Menu Keeps Verticaly by ruimacdonald
Tnx for your help. It's done. Rui
RE: Menu Keeps Verticaly by jncraig
The configuration of the MENU skin object is defined in the skin.xml file. You'll need to modify th...
DotNetNuke Modules
RSS Feeds