Problem with headers when exporting to wordpress


Author Message
EuroUser

Posted: 7/29/2015
Quote message 

I have designed my own custom theme in Artisteer and selected all the fonts for all the different headers and content, which is all the same font in different sizes. When I open the theme in wordpress it opens the content in the correct font but reverts back to a default font for headers. I've been back through all the headers in every section in Artisteer and reloaded the theme to wordpress but received the same results.

Can anyone suggest a way to fix this please? Any help would be greatly appreciated.
 
Tiff

Posted: 7/29/2015
Quote message 

Whats the URL?
 
Jackie

Posted: 8/26/2015
Quote message 

I am having the same problem with the headers being changed on content but not the blog posts. Also, the header flashes on the desktop from mobile headers. I can't create any new sites with this issue.
This problem was not in 4, so is it possible to go back to the old version. The site is http://guidedchristianmeditation.com and another site: http://heartachetohealing.com
 
ScottN

Posted: 8/28/2015
Quote message 

{quote]Also, the header flashes on the desktop from mobile headers.
This is a huge problem... it has to do with the way that Artisteer uses javascript to hide elements that belong on the mobile screens but not on desktop. The reverse also happens (desktop header elements flash temporarily on mobile devices before they are hidden)

The fix is to figure out the name/number of the element that is "flashing" briefly on the header, and then target it with some custom css to tell CSS not to display it... something like this:

@media screen and (min-width: 768px) {
#art-main header.art-header div.art-object2083504682 { display: none; }
}

It's really a frustrating problem. I thought that Artisteer would fix this, but now I see they have focused all their energy into the Themer behemoth and we'll likely never see a fix for this.

- Scott