[8WR] XenPorta (Portal) PRO

[8WR] XenPorta (Portal) PRO [Paid] 1.2.2b

No permission to buy ($40.00)
hello @Jaxel

i have update to day to the new version. now i don't see the widget chat from siroup. i have install new the widget but i don't see the widget ...before i have update was all fine

grettings lemmi
 
@Jaxel I found the setting,but it made it uneven the other way..

View attachment 121772

Would it be any way of setting the size of these blocks by pixels instead of text length?
Sure... use CSS to force a height.

hello @Jaxel

i have update to day to the new version. now i don't see the widget chat from siroup. i have install new the widget but i don't see the widget ...before i have update was all fine

grettings lemmi
The recent update didn't change the widget, so it shouldn't change anything.
 
Can edit the header/logo template and put the url in instead of the variable.

Is this what I change for link on Logo?


#logo
{
display: block;
float: left;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
max-width: 100%;
vertical-align: middle;
}

/* IE6/7 vertical align fix */
#logo span
{
*display: inline-block;
*height: 100%;
}

#logo a:hover
{
text-decoration: none;
}

#logo img
{
vertical-align: middle;
max-width: 100%;
}
 
Is this what I change for link on Logo?


#logo
{
display: block;
float: left;
line-height: {xen:calc '@headerLogoHeight - 4'}px;
*line-height: @headerLogoHeight;
height: @headerLogoHeight;
max-width: 100%;
vertical-align: middle;
}

/* IE6/7 vertical align fix */
#logo span
{
*display: inline-block;
*height: 100%;
}

#logo a:hover
{
text-decoration: none;
}

#logo img
{
vertical-align: middle;
max-width: 100%;
}

No that is the CSS for it, it will be in the non css template. I can't remember off the top of my head. Think the header template either includes the logo block or includes the logo block template. Anyways you will find an <a href=" tag in there wrapped around the image. Just change the href url variable to a fixed link to your home page. Then remove the button as normal, unless you needed it elsewhere this will take care of your needs.
 
No that is the CSS for it, it will be in the non css template. I can't remember off the top of my head. Think the header template either includes the logo block or includes the logo block template. Anyways you will find an <a href=" tag in there wrapped around the image. Just change the href url variable to a fixed link to your home page. Then remove the button as normal, unless you needed it elsewhere this will take care of your needs.

Thank you !
I looked in the UI.X logo_block and there is a :

<div id="logo"><a href="{$logoLink}">

I change this ? I tried entering URL, but nothing changed..
 
I could have done a mistake...
I also tried with { } around

<xen:hook name="header_logo">
<div id="logo"><a href="URL">
<span><xen:comment>This span fixes IE vertical positioning</xen:comment></span>
<xen:if is="@uix_logoText"><h2 class="uix_textLogo"><xen:if is="@uix_logoTextIcon"><i class="uix_icon @uix_logoTextIcon"></i></xen:if>@uix_logoText</h2><xen:else /><img src="@headerLogoPath" alt="{$xenOptions.boardTitle}" /></xen:if>
<xen:if is="@uix_sloganText"><div class="uix_slogan">@uix_sloganText</div></xen:if>
</a></div>
</xen:hook>
 
Last edited:
Assuming you only changed the link inside the " " after href= you should be fine. You did it to the current theme and not another one by accident right? Make sure if you have a parent and child to do it to the child. Thats a UI.X theme so its slightly different.
 
@Jaxel I need to make a separate landing page/theme for mobile users, what would be the best way to do this?
Make a child theme and make that theme bring up a separate article layout?
 
Top Bottom